Netfix
Netfix removes the auto playing previews on Netflix.
Wat is Netfix?
Netfix is een Chrome-extensie ontwikkeld door Samuel Kadolph, en de belangrijkste functie is "Netfix removes the auto playing previews on Netflix.".
Extensie Screenshots
Download het CRX-bestand van de extensie Netfix
Download Netfix-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | dlceeplebocldajolniciioiliocihco |
Officiële URL | https://chromewebstore.google.com/detail/netfix/dlceeplebocldajolniciioiliocihco |
Beschrijving | Netfix removes the auto playing previews on Netflix. |
Bestandsgrootte | 14.26 KB |
Aantal Installaties | 216 |
Huidige Versie | 0.3.0 |
Laatst Bijgewerkt | 2017-12-10 |
Publicatiedatum | 2017-12-09 |
Beoordeling | 3.33/5 Totaal 12 Beoordelingen |
Ontwikkelaar | Samuel Kadolph |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/samuelkadolph/netfix |
Ondersteunde Talen | 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" } |