Netfix
Netfix removes the auto playing previews on Netflix.
Was ist Netfix?
Netfix ist eine Chrome-Erweiterung, die von Samuel Kadolph entwickelt wurde, und ihr Hauptmerkmal ist "Netfix removes the auto playing previews on Netflix.".
Erweiterungsscreenshots
Netfix-Erweiterungs-CRX-Datei herunterladen
Laden Sie Netfix-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dlceeplebocldajolniciioiliocihco |
| Offizielle URL | https://chromewebstore.google.com/detail/netfix/dlceeplebocldajolniciioiliocihco |
| Beschreibung | Netfix removes the auto playing previews on Netflix. |
| Dateigröße | 14.26 KB |
| Installationsanzahl | 216 |
| Aktuelle Version | 0.3.0 |
| Letztes Update | 2017-12-10 |
| Veröffentlichungsdatum | 2017-12-09 |
| Bewertung | 3.33/5 Insgesamt 12 Bewertungen |
| Entwickler | Samuel Kadolph |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/samuelkadolph/netfix |
| Unterstützte Sprachen | 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"
} | |