Twitch Chat Pins
Pin the chat of specific users to watch Twitch more fun!
Twitch Chat Pins란 무엇입니까?
Twitch Chat Pins은(는) kjw3898에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pin the chat of specific users to watch Twitch more fun!"입니다.
확장 프로그램 스크린샷
Twitch Chat Pins 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension filter and pinning chats of specified Twitch users. just click Twitch Chat pins and set username. Update Note v1.3.0 rohroh contribute below function - Move to top of main Twitch chat - Made it scrollable - Added chat badges back in ---------------------------------------------------------- add less button to scroll chat list limit maximam pinned chat to 400 reduce function with duplicated code or only one time use code change absolute maxheight to relative - due to vertial arrangement video with chatlist v1.2.1 hotfix bug that more button was duplicated v1.2.0 make nickname also can pin. just input nickname or ID when open popup, focus to user input fix bug that not pinning until open extension popup. make pin button on user card. you can toggle how many show chats 2 or 8 v1.1.2 make popup smaller now can add user by enter key v1.1.1 change channel work automatically start pinning enhance UI add VOD Chat Pin function
확장 프로그램 기본 정보
이름 | Twitch Chat Pins |
ID | ehcdedkmlcbdgddpplpjobemecjdmhdf |
공식 URL | https://chromewebstore.google.com/detail/twitch-chat-pins/ehcdedkmlcbdgddpplpjobemecjdmhdf |
설명 | Pin the chat of specific users to watch Twitch more fun! |
파일 크기 | 25.17 KB |
설치 횟수 | 745 |
현재 버전 | 1.3.0 |
최근 업데이트 | 2021-03-27 |
출시 날짜 | 2021-03-04 |
평점 | 5.00/5 총 10 개의 평점 |
개발자 | kjw3898 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/kjw3898/twitch-chat-pins |
도움말 페이지 URL | https://github.com/kjw3898/twitch-chat-pins |
지원되는 언어 | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": true, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "128": "images\/icon128.png", "48": "images\/icon48.png" }, "default_popup": "popup.html", "default_title": "Twitch Chat Pins" }, "content_scripts": [ { "js": [ "filter.js" ], "matches": [ "*:\/\/twitch.tv\/*", "*:\/\/*.twitch.tv\/*" ], "run_at": "document_idle" } ], "icons": { "128": "images\/icon128.png", "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png" }, "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "permissions": [ "*:\/\/*.twitch.tv\/*", "tabs", "webNavigation" ], "version": "1.3.0", "web_accessible_resources": [ "filter.js" ] } |