HideMyVideo
Embeds videos into any webpage
Cos'è HideMyVideo?
HideMyVideo è un'estensione di Chrome sviluppata da anarchy2810, e la sua funzione principale è "Embeds videos into any webpage".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HideMyVideo
Scarica i file di estensione HideMyVideo 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
HideMyVideo replaces webpage videos/images with any YouTube Video, or Video that you desire!
Informazioni di Base sull'Estensione
Nome | |
ID | gllhpfhkdpjlcfflpclfemkbipnnimik |
URL Ufficiale | https://chromewebstore.google.com/detail/hidemyvideo/gllhpfhkdpjlcfflpclfemkbipnnimik |
Descrizione | Embeds videos into any webpage |
Dimensione del File | 108 KB |
Conteggio Installazioni | 11 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2018-06-19 |
Data di Pubblicazione | 2018-06-19 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | anarchy2810 |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HideMyVideo", "description": "Embeds videos into any webpage", "version": "1.0", "browser_action": { "default_icon": { "128": "images\/icon128.png", "16": "images\/icon16.png", "24": "images\/icon24.png", "256": "images\/icon256.png", "32": "images\/icon32.png", "64": "images\/icon64.png" }, "default_popup": "popup.html", "default_title": "Click here!" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "images\/icon16.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_scripts\/content.js", "content_scripts\/jquery.min.js" ], "css": [ "content_scripts\/format.css" ], "run_at": "document_end" } ], "permissions": [ "storage", "tabs" ] } |