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
Eメール [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"
    }
}