Netflix Shortcuts

Custom shortcuts for Netflix

Netflix Shortcutsคืออะไร?

Netflix Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Custom shortcuts for Netflix"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Shortcuts

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}