Netflix Shortcuts

Custom shortcuts for Netflix

Netflix Shortcutsとは何ですか?

Netflix ShortcutsはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Custom shortcuts for Netflix」です。

拡張機能のスクリーンショット

screenshot

Netflix Shortcuts拡張機能のCRXファイルをダウンロード

Netflix Shortcuts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension allows you to control Netflix using only your keyboard, no more mouse needed.

It currently supports:
- "Skip Intro" (hit the "s" key)
- "Next Episode" (hit the "n" key).

More coming soon...                    

拡張機能の基本情報

名前 Netflix Shortcuts Netflix Shortcuts
ID pplbkfmlmhipnhgjbdmlpkicnbkalhdp
公式URL https://chromewebstore.google.com/detail/netflix-shortcuts/pplbkfmlmhipnhgjbdmlpkicnbkalhdp
説明 Custom shortcuts for Netflix
ファイルサイズ 6.79 KB
インストール数 246
現在のバージョン 1.0
最終更新日 2018-10-06
公開日 2018-10-06
評価 1.00/5 合計 1 レビュー
開発者 Unknown
支払い方法 free
拡張機能のウェブサイト https://github.com/foxou33/netflix-shortcuts
ヘルプページのURL https://github.com/foxou33/netflix-shortcuts/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Shortcuts",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Custom shortcuts for Netflix",
    "icons": {
        "64": "img\/icon_grey.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/watch\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "img\/icon_red.png"
    },
    "permissions": [
        "declarativeContent"
    ]
}