Hide Youtube Likes/Dislikes
Hides ratings information on Youtube videos.
Hide Youtube Likes/Dislikesとは何ですか?
Hide Youtube Likes/Dislikesはrmitaldevによって開発されたChromeの拡張機能で、その主な機能は「Hides ratings information on Youtube videos.」です。
拡張機能のスクリーンショット
Hide Youtube Likes/Dislikes拡張機能のCRXファイルをダウンロード
Hide Youtube Likes/Dislikes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
UPDATE 1.0.2: Now handles Youtube's new sentiment bar, where dislikes are already hidden automatically. This extension gives users the option to hide the number of "likes" on a video and/or the entire sentiment bar on Youtube. Feel free to continue rating videos without worrying what other people think of it, or turn off that feature completely if you want to watch and enjoy videos without any pressure! NOTE: You will need to restart your browser for the changes to take effect! If you have any other trouble with this extension, please leave a comment in the support page and I will get to you as soon as I can. Thanks!
拡張機能の基本情報
名前 | Hide Youtube Likes/Dislikes |
ID | bndphnggikgjkhappgdnhijgnlafnfph |
公式URL | https://chromewebstore.google.com/detail/hide-youtube-likesdislike/bndphnggikgjkhappgdnhijgnlafnfph |
説明 | Hides ratings information on Youtube videos. |
ファイルサイズ | 73.07 KB |
インストール数 | 641 |
現在のバージョン | 1.0.2 |
最終更新日 | 2023-05-09 |
公開日 | 2020-02-24 |
評価 | 4.38/5 合計 32 レビュー |
開発者 | rmitaldev |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide Youtube Likes\/Dislikes", "version": "1.0.2", "description": "Hides ratings information on Youtube videos.", "manifest_version": 2, "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "arrive.js", "contentscript.js" ], "run_at": "document_start" } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/ico_16.png", "32": "images\/ico_32.png", "48": "images\/ico_48.png", "128": "images\/ico_128.png" } }, "icons": { "16": "images\/ico_16.png", "32": "images\/ico_32.png", "48": "images\/ico_48.png", "128": "images\/ico_128.png" } } |