Netflix Shortcuts

Custom shortcuts for Netflix

Apa itu Netflix Shortcuts?

Netflix Shortcuts adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Custom shortcuts for Netflix".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Netflix Shortcuts

Unduh file ekstensi Netflix Shortcuts dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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...                    

Informasi Dasar Ekstensi

Nama Netflix Shortcuts Netflix Shortcuts
ID pplbkfmlmhipnhgjbdmlpkicnbkalhdp
URL Resmi https://chromewebstore.google.com/detail/netflix-shortcuts/pplbkfmlmhipnhgjbdmlpkicnbkalhdp
Deskripsi Custom shortcuts for Netflix
Ukuran File 6.79 KB
Jumlah Instalasi 246
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-10-06
Tanggal Publikasi 2018-10-06
Penilaian 1.00/5 Total 1 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Situs Ekstensi https://github.com/foxou33/netflix-shortcuts
URL Halaman Bantuan https://github.com/foxou33/netflix-shortcuts/issues
Bahasa yang Didukung 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"
    ]
}