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
官方網址 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"
    ]
}