Netflixer

Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).

Was ist Netflixer?

Netflixer ist eine Chrome-Erweiterung, die von MoCo entwickelt wurde, und ihr Hauptmerkmal ist "Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).".

Netflixer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Netflixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        When you open Netflix you see two big billboards: one for the some originals (which will play automatically when you hover it including sound) and one for a specific Netflix original. This extension removes those billboards and adds a button in the header 'Show billboards' which will toggle these billboards (so you can still see them).                    

Grundlegende Informationen zur Erweiterung

Name Netflixer Netflixer
ID hfgjopmkbmeincmdahgpogmdakekgilm
Offizielle URL https://chrome.google.com/webstore/detail/netflixer/hfgjopmkbmeincmdahgpogmdakekgilm
Beschreibung Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).
Dateigröße 37.6 KB
Installationsanzahl 417
Aktuelle Version 1.0.0
Letztes Update 2016-09-13
Veröffentlichungsdatum 2016-09-13
Bewertung 4.57/5 Insgesamt 7 Bewertungen
Entwickler MoCo
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflixer",
    "version": "1.0.0",
    "manifest_version": 2,
    "icons": {
        "16": "res\/nf-logo-16.png",
        "48": "res\/nf-logo-48.png",
        "128": "res\/nf-logo-128.png"
    },
    "description": "Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ]
}