Toggle YouTube Likes
Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!
Toggle YouTube Likesとは何ですか?
Toggle YouTube LikesはChristopher Siegelによって開発されたChromeの拡張機能で、その主な機能は「Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!」です。
拡張機能のスクリーンショット
Toggle YouTube Likes拡張機能のCRXファイルをダウンロード
Toggle YouTube Likes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Special thanks to YouTuber 2Bough! Changelog: Version 1.2: - Now also hides the like/dislike bar above the like/dislike buttons. (31. March 2017) Version 1.1: - fixes issues with youtubes way of changing urls (30. March 2017)
拡張機能の基本情報
名前 | |
ID | gfmhigdbjknoapodiijfdfdkinmihfop |
公式URL | https://chrome.google.com/webstore/detail/toggle-youtube-likes/gfmhigdbjknoapodiijfdfdkinmihfop |
説明 | Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough! |
ファイルサイズ | 49.33 KB |
インストール数 | 151 |
現在のバージョン | 1.2 |
最終更新日 | 2017-04-23 |
公開日 | 2017-04-23 |
評価 | 3.73/5 合計 15 レビュー |
開発者 | Christopher Siegel |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Toggle YouTube Likes", "description": "Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!", "version": "1.2", "author": "Christopher Siegel", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/" ], "background": { "scripts": [ "jquery.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "jquery.js", "hide.js" ], "css": [ "main.css" ] } ], "web_accessible_resources": [ "script.js" ] } |