Toggle YouTube Likes
Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!
Cos'è Toggle YouTube Likes?
Toggle YouTube Likes è un'estensione di Chrome sviluppata da Christopher Siegel, e la sua funzione principale è "Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Toggle YouTube Likes
Scarica i file di estensione Toggle YouTube Likes in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)
Informazioni di Base sull'Estensione
Nome | |
ID | gfmhigdbjknoapodiijfdfdkinmihfop |
URL Ufficiale | https://chrome.google.com/webstore/detail/toggle-youtube-likes/gfmhigdbjknoapodiijfdfdkinmihfop |
Descrizione | Hides likes and dislikes until you want to see them. Rate videos without peer pressure. Special thanks to YouTuber 2Bough! |
Dimensione del File | 49.33 KB |
Conteggio Installazioni | 151 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2017-04-23 |
Data di Pubblicazione | 2017-04-23 |
Valutazione | 3.73/5 Totale 15 Valutazioni |
Sviluppatore | Christopher Siegel |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |