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 |
官方網址 | 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 |
電子郵箱 | [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" ] } |