youtube_chat_pinner
A Youtube chat of moderater pin on chat window.
youtube_chat_pinner란 무엇입니까?
youtube_chat_pinner은(는) shacchin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Youtube chat of moderater pin on chat window."입니다.
확장 프로그램 스크린샷
youtube_chat_pinner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Youtubeの配信や配信アーカイブでスパナ付きコメント時、そのコメントをチャット欄上部に固定します。 固定を解除したい時はコメントをクリックしてください。 Vtuberの配信に他のVtuberが来た時に、コメントが流れてしまってどんなコメントをしたのか分からない……といったことがなくなります。
확장 프로그램 기본 정보
이름 | youtube_chat_pinner |
ID | ckgpjgmdfgheojokphgdiohinmeciakf |
공식 URL | https://chromewebstore.google.com/detail/youtubechatpinner/ckgpjgmdfgheojokphgdiohinmeciakf |
설명 | A Youtube chat of moderater pin on chat window. |
파일 크기 | 44.67 KB |
설치 횟수 | 403 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2020-08-05 |
출시 날짜 | 2019-07-12 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | shacchin |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/shacchin/youtube_chat_pinner |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "1.1.0", "manifest_version": 2, "default_locale": "ja", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "*:\/\/www.youtube.com\/watch?*", "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch?*" ], "css": [ "css\/contentscript.css" ], "js": [ "contentscript.js" ], "run_at": "document_start", "all_frames": false } ], "options_ui": { "page": "html\/options.html", "chrome_style": true, "open_in_tab": false } } |