Toggle YouTube Likes
Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!
Vad är Toggle YouTube Likes?
Toggle YouTube Likes är en Chrome-tillägg utvecklad av Christopher Siegel, och dess huvudfunktion är "Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!".
Tilläggsskärmbilder
Ladda ner Toggle YouTube Likes-förlängningens CRX-fil
Ladda ner Toggle YouTube Likes-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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)
Grundläggande Information om Tillägg
Namn | |
ID | gfmhigdbjknoapodiijfdfdkinmihfop |
Officiell webbadress | https://chrome.google.com/webstore/detail/toggle-youtube-likes/gfmhigdbjknoapodiijfdfdkinmihfop |
Beskrivning | Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough! |
Filstorlek | 49.33 KB |
Antal Installationer | 151 |
Aktuell Version | 1.2 |
Senast Uppdaterad | 2017-04-23 |
Publiceringsdatum | 2017-04-23 |
Betyg | 3.73/5 Totalt 15 Betyg |
Utvecklare | Christopher Siegel |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |