YouTube Audio Only
Hide Contents for Audio Only on YouTube
Cos'è YouTube Audio Only?
YouTube Audio Only è un'estensione di Chrome sviluppata da http://fiahfy.blogspot.com, e la sua funzione principale è "Hide Contents for Audio Only on YouTube".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Audio Only
Scarica i file di estensione YouTube Audio Only 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
* Hide playing video, thumbnails and avatars.
Informazioni di Base sull'Estensione
Nome | |
ID | bcoibpphkjajfgggmbnogddhlebdhllb |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-audio-only/bcoibpphkjajfgggmbnogddhlebdhllb |
Descrizione | Hide Contents for Audio Only on YouTube |
Dimensione del File | 22.59 KB |
Conteggio Installazioni | 112 |
Versione Corrente | 0.0.10 |
Ultimo Aggiornamento | 2019-09-18 |
Data di Pubblicazione | 2019-09-18 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | http://fiahfy.blogspot.com |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "icons": { "128": "assets\/icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": true, "js": [ "content-script.js" ] } ], "page_action": { "default_icon": "assets\/icon.png" }, "permissions": [ "tabs", "https:\/\/www.youtube.com\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "name": "YouTube Audio Only", "description": "Hide Contents for Audio Only on YouTube", "version": "0.0.10" } |