AdSkipper
This extension will skip youtube ads.
Cos'è AdSkipper?
AdSkipper è un'estensione di Chrome sviluppata da Abhishek Meharia, e la sua funzione principale è "This extension will skip youtube ads.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AdSkipper
Scarica i file di estensione AdSkipper 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
AdSkipper for Youtube™ is a content filtering and ad blocking browser extension which blocks ads on Youtube™. Automatically clicks 'Skip Ad' buttons for you. It doesn't block ads, it just clicks close button and skip ad for you automatically. Useful if you are listening to music in office areas or if you are bit lazy to press that button.
Informazioni di Base sull'Estensione
Nome | AdSkipper |
ID | paeoelngbckenlidinleldbemhkdiphi |
URL Ufficiale | https://chromewebstore.google.com/detail/adskipper/paeoelngbckenlidinleldbemhkdiphi |
Descrizione | This extension will skip youtube ads. |
Dimensione del File | 59.06 KB |
Conteggio Installazioni | 2,555 |
Versione Corrente | 0.7 |
Ultimo Aggiornamento | 2021-06-27 |
Data di Pubblicazione | 2019-08-14 |
Valutazione | 4.50/5 Totale 8 Valutazioni |
Sviluppatore | Abhishek Meharia |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://abhim.in |
URL della Pagina di Aiuto | https://abhim.in |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AdSkipper", "description": "This extension will skip youtube ads.", "version": "0.7", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": true }, "commands": { "toggle-feature-foo": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "MacCtrl+Shift+K" }, "description": "Switches between play and pause state.", "name": "Play pause shortcut command", "global": true } }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "skip.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'" } |