Netflix Autoskip

auto-clicks skip buttons

What is Netflix Autoskip?

Netflix Autoskip is a Chrome extension developed by ChrisDeadman, and its main feature is "auto-clicks skip buttons".

Extension Screenshots

screenshot

Download Netflix Autoskip Extension CRX File

Download Netflix Autoskip 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

                        removes the hassle of getting up to skip the recap/intro when binging netflix shows.                    

Extension Basic Information

Name Netflix Autoskip Netflix Autoskip
ID ckkclnbnbljdaoclmkmhagidpimedcii
Official URL https://chromewebstore.google.com/detail/netflix-autoskip/ckkclnbnbljdaoclmkmhagidpimedcii
Description auto-clicks skip buttons
File Size 32.48 KB
Installation Count 130
Current Version 1.0
Last Updated 2019-04-13
Publish Date 2019-04-13
Developer ChrisDeadman
Email [email protected]
Payment Type free
Extension Website https://github.com/ChrisDeadman/NetflixAutoskip
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Autoskip",
    "description": "auto-clicks skip buttons",
    "version": "1.0",
    "author": "ChrisDeadman",
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "autoskip.js"
            ],
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    }
}