Netflix block synopsis spoiling

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

Vad är Netflix block synopsis spoiling?

Netflix block synopsis spoiling är en Chrome-tillägg utvecklad av Holger Kreis, och dess huvudfunktion är "This extension hides synopses in episode carousels and the next episode autoloader of Netflix's web user interface.".

Ladda ner Netflix block synopsis spoiling-förlängningens CRX-fil

Ladda ner Netflix block synopsis spoiling-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Netflix block synopsis spoiling Netflix block synopsis spoiling
ID gibbfeoglggnkdoagdgiibllignhoofo
Officiell webbadress https://chromewebstore.google.com/detail/netflix-block-synopsis-sp/gibbfeoglggnkdoagdgiibllignhoofo
Beskrivning This extension hides synopses in episode carousels and the next episode autoloader of Netflix's web user interface.
Filstorlek 48.42 KB
Antal Installationer 15
Aktuell Version 0.2
Senast Uppdaterad 2015-12-31
Publiceringsdatum 2015-12-31
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Holger Kreis
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}