Netflix Keyboard Shortcuts Plus

for 3 secs forward/backward

Netflix Keyboard Shortcuts Plus क्या है?

Netflix Keyboard Shortcuts Plus center द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "for 3 secs forward/backward"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Netflix Keyboard Shortcuts Plus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
            ]
        }
    ]
}