Stop NetFlix Previews

A Chrome extension that prevents NetFlix previews from playing.

What is Stop NetFlix Previews?

Stop NetFlix Previews is a Chrome extension developed by TJ Downes, and its main feature is "A Chrome extension that prevents NetFlix previews from playing.".

Extension Screenshots

screenshot

Download Stop NetFlix Previews Extension CRX File

Download Stop NetFlix Previews extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension simply pauses NetFlix previews on the NetFlix website.                    

Extension Basic Information

Name Stop NetFlix Previews Stop NetFlix Previews
ID gmdijfdhcomiabonldahmphoengpeadi
Official URL https://chromewebstore.google.com/detail/stop-netflix-previews/gmdijfdhcomiabonldahmphoengpeadi
Description A Chrome extension that prevents NetFlix previews from playing.
File Size 14.98 KB
Installation Count 21
Current Version 1.6.5
Last Updated 2018-07-22
Publish Date 2018-07-22
Rating 5.00/5 Total 1 Ratings
Developer TJ Downes
Payment Type free
Extension Website https://github.com/tjdownes/stop-netflix-previews-chrome
Help Page URL https://github.com/tjdownes/stop-netflix-previews-chrome
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop NetFlix Previews",
    "description": "A Chrome extension that prevents NetFlix previews from playing.",
    "version": "1.6.5",
    "author": "TJ Downes",
    "icons": {
        "16": "images\/icon_16x16.png",
        "48": "images\/icon_48x48.png",
        "96": "images\/icon_96x96.png",
        "128": "images\/icon_128x128.png"
    },
    "browser_action": {
        "default_icon": "images\/stop-button.png",
        "default_title": "Stop Netflix Previews"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/browse"
            ],
            "js": [
                "dom-ready.js",
                "stop-netflix-previews.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background-navigation-handler.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "https:\/\/www.netflix.com\/browse"
    ]
}