Netfix
Netfix removes the auto playing previews on Netflix.
Qu'est-ce que Netfix ?
Netfix est une extension Chrome développée par Samuel Kadolph, et sa fonction principale est "Netfix removes the auto playing previews on Netflix.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Netfix
Téléchargez les fichiers d'extension Netfix au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | dlceeplebocldajolniciioiliocihco |
URL Officiel | https://chromewebstore.google.com/detail/netfix/dlceeplebocldajolniciioiliocihco |
Description | Netfix removes the auto playing previews on Netflix. |
Taille du Fichier | 14.26 KB |
Nombre d'Installations | 216 |
Version Actuelle | 0.3.0 |
Dernière Mise à Jour | 2017-12-10 |
Date de Publication | 2017-12-09 |
Évaluation | 3.33/5 Total 12 Évaluations |
Développeur | Samuel Kadolph |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/samuelkadolph/netfix |
Langues Prises en Charge | 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" } |