Netfix
Netfix removes the auto playing previews on Netflix.
Cos'è Netfix?
Netfix è un'estensione di Chrome sviluppata da Samuel Kadolph, e la sua funzione principale è "Netfix removes the auto playing previews on Netflix.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Netfix
Scarica i file di estensione Netfix 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
Tired of Netflix's auto playing preview ads? Install this extension and those will be disabled! Code available at https://github.com/samuelkadolph/netfix. Report issues at https://github.com/samuelkadolph/netfix/issues. Changelog: v0.3.0 - Switched to block network requests for the preview videos - Added option to turn preview blocking on and off v0.2.0 - Added options page - Added option to hide the whole billboard instead of just the preview video v0.1.7 - Replaced placeholder 16x16 icon v0.1.6 - Now removes the preview video when returning to the browse page
Informazioni di Base sull'Estensione
Nome | |
ID | dlceeplebocldajolniciioiliocihco |
URL Ufficiale | https://chromewebstore.google.com/detail/netfix/dlceeplebocldajolniciioiliocihco |
Descrizione | Netfix removes the auto playing previews on Netflix. |
Dimensione del File | 14.26 KB |
Conteggio Installazioni | 216 |
Versione Corrente | 0.3.0 |
Ultimo Aggiornamento | 2017-12-10 |
Data di Pubblicazione | 2017-12-09 |
Valutazione | 3.33/5 Totale 12 Valutazioni |
Sviluppatore | Samuel Kadolph |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/samuelkadolph/netfix |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "javascripts\/background.js" ] }, "content_scripts": [ { "js": [ "javascripts\/netfix.js" ], "matches": [ "https:\/\/www.netflix.com\/*" ] } ], "description": "Netfix removes the auto playing previews on Netflix.", "icons": { "16": "images\/icon16.png", "38": "images\/icon38.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2, "name": "Netfix", "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "https:\/\/*.nflxvideo.net\/*", "https:\/\/www.netflix.com\/*", "storage", "webRequest", "webRequestBlocking" ], "short_name": "Netfix", "version": "0.3.0" } |