YouTube Comments
YouTube comments chrome extension
YouTube Commentsとは何ですか?
YouTube Commentsはhttps://tomorrowapps.comによって開発されたChromeの拡張機能で、その主な機能は「YouTube comments chrome extension」です。
拡張機能のスクリーンショット
YouTube Comments拡張機能のCRXファイルをダウンロード
YouTube Comments拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
YTC Extension makes youtube comments reading easier. This allows users to go directly to the comment section and read them right away. Most users who already watched a certain video want to read comments right away but waiting for the video to load so they can pause it is a hassle. YTC automates that process and makes it easier for the user. YTC is very useful for youtubers, channels owners, subscibers and even for trolls who are looking for jokes in the comment section. Have fun!
拡張機能の基本情報
名前 | YouTube Comments |
ID | egbebnjiaigjekepcalpcjeckiepebgl |
公式URL | https://chromewebstore.google.com/detail/youtube-comments/egbebnjiaigjekepcalpcjeckiepebgl |
説明 | YouTube comments chrome extension |
ファイルサイズ | 924 KB |
インストール数 | 23 |
現在のバージョン | 1.0 |
最終更新日 | 2018-07-08 |
公開日 | 2018-07-08 |
評価 | 2.50/5 合計 2 レビュー |
開発者 | https://tomorrowapps.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://tomorrowapps.com/ytc |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Comments", "short_name": "YTC Extension", "version": "1.0", "description": "YouTube comments chrome extension", "manifest_version": 2, "permissions": [ "tabs", "activeTab", "declarativeContent", "storage", "webRequest", "*:\/\/*.youtube.com\/*", "webRequestBlocking" ], "content_scripts": [ { "all_frames": true, "js": [ "libs\/jquery.min.js", "content.js" ], "match_about_blank": true, "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "run_at": "document_start" } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/i16f.png", "32": "images\/i32f.png", "48": "images\/i48f.png", "128": "images\/i128f.png" } }, "icons": { "16": "images\/i16f.png", "32": "images\/i32f.png", "48": "images\/i48f.png", "128": "images\/i128f.png" }, "background": { "scripts": [ "background.js" ], "persistent": true } } |