Youtube Dislike Count Extention
This extention enables the YouTube dislike count!
Youtube Dislike Count Extentionとは何ですか?
Youtube Dislike Count ExtentionはAusama95によって開発されたChromeの拡張機能で、その主な機能は「This extention enables the YouTube dislike count!」です。
拡張機能のスクリーンショット
Youtube Dislike Count Extention拡張機能のCRXファイルをダウンロード
Youtube Dislike Count Extention拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension brings back the ability to be able to see the dislike ratio of any YouTube video.
拡張機能の基本情報
名前 | |
ID | ihelhpoojojegneekjecpiobfkbfcibi |
公式URL | https://chrome.google.com/webstore/detail/youtube-dislike-count-ext/ihelhpoojojegneekjecpiobfkbfcibi |
説明 | This extention enables the YouTube dislike count! |
ファイルサイズ | 24.13 KB |
インストール数 | 105 |
現在のバージョン | 0.2 |
最終更新日 | 2022-01-25 |
公開日 | 2022-01-24 |
評価 | 4.00/5 合計 4 レビュー |
開発者 | Ausama95 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Dislike Count Extention", "description": "This extention enables the YouTube dislike count!", "version": "0.2", "manifest_version": 3, "background": { "service_worker": ".\/background.js" }, "options_page": "options.html", "permissions": [ "storage", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/images\/obj-16x16.png", "32": ".\/images\/obj-32x32.png", "48": ".\/images\/obj-48x48.png", "128": ".\/images\/obj-128x128.png" } }, "icons": { "16": ".\/images\/obj-16x16.png", "32": ".\/images\/obj-32x32.png", "48": ".\/images\/obj-48x48.png", "128": ".\/images\/obj-128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_start", "css": [ "content-style.css" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "script.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |