Netflix Keyboard Shortcuts Plus

for 3 secs forward/backward

什麼是Netflix Keyboard Shortcuts Plus?

Netflix Keyboard Shortcuts Plus是由center開發的Chrome擴展程式,該擴展的主要功能是“for 3 secs forward/backward”。

擴展截圖

screenshot
screenshot
screenshot

下載Netflix Keyboard Shortcuts Plus擴展crx文件

下載Netflix Keyboard Shortcuts Plus擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension will enable keyboard shortcuts that Netflix doesn't have.



      A or J:       3 secs backward
      S or K:       pause/play
      D or L:       3 secs forward

      1-9:          X secs backward
      Shift + 1-9:  X secs forward

      C:            Toggle subs (Native / Learning language)
      V:            Toggle audio (Native / Learning language)
      Shift + C:    Toggle subs visibility

      H:            Toggle subs clipboard copy by mouseover

      -:            decrease Playback Rate
      +:            increase Playback Rate 
      0:            Playback Rate to default


You can set the native language and learning language, and you can toggle audio/subtitles using shortcut keys.
Further more, there are many extremely useful shortcuts especially for language learners and heavy users.

All you need to do from now on is just install it and click the icon! (^o^)




English, Japanese, French, German, Spanish, Chinese... and so on.
(More than "18" languages!)                    

擴展基本資訊

名稱 Netflix Keyboard Shortcuts Plus Netflix Keyboard Shortcuts Plus
ID lcijklobkiddjhhkfkdhlhaabiknoahg
官方網址 https://chromewebstore.google.com/detail/netflix-keyboard-shortcut/lcijklobkiddjhhkfkdhlhaabiknoahg
簡介 for 3 secs forward/backward
檔案大小 62.42 KB
安裝次數 419
目前版本 2.0.0
更新時間 2024-01-01
上架時間 2020-02-17
評分 4.57/5 共 7 次評分
開發者 center
電子郵箱 [email protected]
付費類型 free
擴展官網 https://twitter.com/ExisVR/
說明頁面URL https://twitter.com/ExisVR/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Keyboard Shortcuts Plus",
    "description": "for 3 secs forward\/backward",
    "version": "2.0.0",
    "manifest_version": 3,
    "icons": {
        "128": ".\/images\/icon-128x128.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "action": {
        "default_popup": ".\/options.html",
        "default_icons": {
            "128": ".\/images\/icon-128x128.png"
        }
    },
    "options_page": ".\/options.html",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.netflix.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "css": [
                "inject.css"
            ],
            "js": [
                "libs\/jq.js",
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "resources": [
                "libs\/jq.js",
                "libs\/myLib.js",
                "inject_content.js"
            ]
        }
    ]
}