Netflix Autoskip

auto-clicks skip buttons

什么是Netflix Autoskip?

Netflix Autoskip是由ChrisDeadman开发的Chrome扩展程序,该扩展的主要功能是“auto-clicks skip buttons”。

扩展截图

screenshot

下载Netflix Autoskip扩展crx文件

下载Netflix Autoskip扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Netflix Autoskip Netflix Autoskip
ID ckkclnbnbljdaoclmkmhagidpimedcii
官方URL https://chromewebstore.google.com/detail/netflix-autoskip/ckkclnbnbljdaoclmkmhagidpimedcii
简介 auto-clicks skip buttons
文件大小 32.48 KB
安装次数 130
当前版本 1.0
更新时间 2019-04-13
上架时间 2019-04-13
开发者 ChrisDeadman
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ChrisDeadman/NetflixAutoskip
支持的语言 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"
    }
}