Netflix block synopsis spoiling

This extension hides synopses in episode carousels and the next episode autoloader of Netflix's web user interface.

Apa itu Netflix block synopsis spoiling?

Netflix block synopsis spoiling adalah ekstensi Chrome yang dikembangkan oleh Holger Kreis, dan fitur utamanya adalah "This extension hides synopses in episode carousels and the next episode autoloader of Netflix's web user interface.".

Unduh Berkas CRX Ekstensi Netflix block synopsis spoiling

Unduh file ekstensi Netflix block synopsis spoiling 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

                        If you always try hard ignoring the next episodes synopses for not being spoiled, just enable this extension. An option setting is provided to show the teasers anyway.                    

Informasi Dasar Ekstensi

Nama Netflix block synopsis spoiling Netflix block synopsis spoiling
ID gibbfeoglggnkdoagdgiibllignhoofo
URL Resmi https://chromewebstore.google.com/detail/netflix-block-synopsis-sp/gibbfeoglggnkdoagdgiibllignhoofo
Deskripsi This extension hides synopses in episode carousels and the next episode autoloader of Netflix's web user interface.
Ukuran File 48.42 KB
Jumlah Instalasi 15
Versi Saat Ini 0.2
Terakhir Diperbarui 2015-12-31
Tanggal Publikasi 2015-12-31
Penilaian 5.00/5 Total 3 Penilaian
Pengembang Holger Kreis
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix block synopsis spoiling",
    "description": "This extension hides synopses in episode carousels and the next episode autoloader of Netflix's web user interface.",
    "version": "0.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.netflix.com\/*",
                "https:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "hidesynopsis.js"
            ],
            "css": [
                "hidesynopsis.css"
            ]
        }
    ]
}