Netflixer

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

Qu'est-ce que Netflixer ?

Netflixer est une extension Chrome développée par MoCo, et sa fonction principale est "Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).".

Télécharger le fichier CRX de l'extension Netflixer

Téléchargez les fichiers d'extension Netflixer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Netflixer Netflixer
ID hfgjopmkbmeincmdahgpogmdakekgilm
URL Officiel https://chrome.google.com/webstore/detail/netflixer/hfgjopmkbmeincmdahgpogmdakekgilm
Description Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).
Taille du Fichier 37.6 KB
Nombre d'Installations 417
Version Actuelle 1.0.0
Dernière Mise à Jour 2016-09-13
Date de Publication 2016-09-13
Évaluation 4.57/5 Total 7 Évaluations
Développeur MoCo
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}