How Do You Delete The Like Button [Youtube]
This extension allows the user to remove the like button from Youtube videos.
Cos'è How Do You Delete The Like Button [Youtube]?
How Do You Delete The Like Button [Youtube] è un'estensione di Chrome sviluppata da x.hiei.jaganshi.x, e la sua funzione principale è "This extension allows the user to remove the like button from Youtube videos.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione How Do You Delete The Like Button [Youtube]
Scarica i file di estensione How Do You Delete The Like Button [Youtube] 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
How do you delete the like button? Now its possible. Click the extension icon to remove the like button from youtube videos, so you don't "accidentally" click on it. Automatically removes "Thumbs Up" from Logan Paul videos.
Informazioni di Base sull'Estensione
Nome | |
ID | eolomlinhghnnjmbopefbpodbgpbggpb |
URL Ufficiale | https://chrome.google.com/webstore/detail/how-do-you-delete-the-lik/eolomlinhghnnjmbopefbpodbgpbggpb |
Descrizione | This extension allows the user to remove the like button from Youtube videos. |
Dimensione del File | 7.02 KB |
Conteggio Installazioni | 18 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2018-03-19 |
Data di Pubblicazione | 2018-03-19 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | x.hiei.jaganshi.x |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "How Do You Delete The Like Button [Youtube]", "description": "This extension allows the user to remove the like button from Youtube videos.", "version": "1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon16.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "storage" ], "content_security_policy": "script-src 'self' https:\/\/www.google.com; object-src 'self'" } |