YellowInsideLib 1.0.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package YellowInsideLib --version 1.0.7
                    
NuGet\Install-Package YellowInsideLib -Version 1.0.7
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="YellowInsideLib" Version="1.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="YellowInsideLib" Version="1.0.7" />
                    
Directory.Packages.props
<PackageReference Include="YellowInsideLib" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add YellowInsideLib --version 1.0.7
                    
#r "nuget: YellowInsideLib, 1.0.7"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package YellowInsideLib@1.0.7
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=YellowInsideLib&version=1.0.7
                    
Install as a Cake Addin
#tool nuget:?package=YellowInsideLib&version=1.0.7
                    
Install as a Cake Tool

YellowInsideLib

NuGet

메신저 채팅창에 사이드카 형태로 기능을 확장할 수 있는 .NET 라이브러리입니다.현재는 디시콘(Dccon) 버튼 부착 및 이미지 전송 기능을 제공하며, 향후 다양한 기능이 추가될 수 있습니다.

요구 사항

  • .NET 10 (Windows)

사용법

SessionManager는 싱글톤으로 제공되며, 채팅창 감지 및 세션 생성/제거를 자동으로 관리합니다. 사용자는 이벤트를 구독하고 서비스를 시작하기만 하면 됩니다.

using YellowInsideLib;

// 인스턴스 획득
var manager = SessionManager.Instance;

// 이벤트 등록 (DcconButtonClicked 외의 이벤트는 선택 사항입니다)
manager.Log += message => Console.WriteLine(message);
manager.SessionCreated += session => Console.WriteLine($"세션 생성: {session}");
manager.SessionRemoved += session => Console.WriteLine($"세션 제거: {session}");
manager.DcconButtonClicked += session =>
{
    Console.WriteLine($"디시콘 버튼 클릭: {session}");
    // 디시콘 이미지 전송
    _ = manager.SendDcconAsync(session.ChatHwnd, @"C:\path\to\dccon.png");
};

// 서비스 시작 (버튼 아이콘 경로는 선택 사항)
manager.Start(buttonIconPath: @"C:\path\to\icon.png");

// 현재 세션 목록 조회
foreach (var session in manager.GetSessions())
    Console.WriteLine(session);

// 특정 채팅창에 수동으로 버튼 부착
manager.TryAttach(chatWindowHandle);

// 서비스 종료
manager.Stop();

라이선스

이 프로젝트는 MIT 라이선스로 배포됩니다.

면책 조항 (Disclaimer)

본 라이브러리는 (주)카카오와 어떠한 제휴나 연관 관계도 없습니다. 본 라이브러리는 메신저의 내부 코드를 수정하거나 역공학하지 않으며, Windows API를 통한 UI 후킹만을 사용하여 동작합니다. 이는 일반적인 Windows 자동화 기법의 범위 내에 해당합니다.

본 라이브러리의 사용이 메신저 서비스 이용약관에 부합하는지 여부는 사용자가 직접 확인해야 하며, 비공식 자동화 도구의 사용은 서비스 약관 위반으로 간주되어 계정 제재 등의 조치를 받을 수 있습니다. 본 라이브러리의 사용으로 발생하는 모든 결과에 대한 책임은 전적으로 사용자에게 있습니다.

감사의 글 (Acknowledgement)

이 프로젝트는 GitHub Copilot의 도움으로 작성되었습니다.

작성자

이호원 (@airtaxi)

Product Compatible and additional computed target framework versions.
.NET net10.0-windows7.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.2 92 5/7/2026
1.1.1 94 4/20/2026
1.1.0 93 4/20/2026
1.0.9 101 4/16/2026
1.0.8 105 4/15/2026
1.0.7 97 4/14/2026
1.0.6 98 4/14/2026
1.0.5 97 4/14/2026
1.0.4 110 4/13/2026
1.0.3 109 4/13/2026