Hide YouTube™ Video
Hide YouTube video
Cos'è Hide YouTube™ Video?
Hide YouTube™ Video è un'estensione di Chrome sviluppata da Cettoana, e la sua funzione principale è "Hide YouTube video".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide YouTube™ Video
Scarica i file di estensione Hide YouTube™ Video 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
# Feature - Hide Youtube video, listen to music without showing video - Hide all recommended video's thumbnails ---------------------------------------- If you have any problems or suggestions, welcome to create an issue in the github repository: https://github.com/cettoana/hide-youtube-video
Informazioni di Base sull'Estensione
Nome | Hide YouTube™ Video |
ID | lminokaobchppnocfchcjcenlmodehmi |
URL Ufficiale | https://chromewebstore.google.com/detail/hide-youtube-video/lminokaobchppnocfchcjcenlmodehmi |
Descrizione | Hide YouTube video |
Dimensione del File | 11.63 KB |
Conteggio Installazioni | 73 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2019-01-03 |
Data di Pubblicazione | 2019-01-03 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Cettoana |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/cettoana/hide-youtube-video |
URL della Pagina di Aiuto | https://github.com/cettoana/hide-youtube-video |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide YouTube\u2122 Video", "version": "0.1.1", "description": "Hide YouTube video", "background": { "scripts": [ "dist\/background.js" ], "persistent": false }, "permissions": [ "https:\/\/www.youtube.com\/*", "declarativeContent", "tabs", "activeTab", "storage" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/image_16.png", "32": "images\/image_32.png", "48": "images\/image_48.png", "128": "images\/image_128.png" } }, "icons": { "16": "images\/image_16.png", "32": "images\/image_32.png", "48": "images\/image_48.png", "128": "images\/image_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "dist\/insertCSS.js", "dist\/removeCSS.js" ], "css": [ "styles\/default.css" ], "run_at": "document_start" } ] } |