Netflix Continue Watching

Moves the 'Continue Watching' section to the top of your Netflix page!

Was ist Netflix Continue Watching?

Netflix Continue Watching ist eine Chrome-Erweiterung, die von michaelcook.tech entwickelt wurde, und ihr Hauptmerkmal ist "Moves the 'Continue Watching' section to the top of your Netflix page!".

Erweiterungsscreenshots

screenshot

Netflix Continue Watching-Erweiterungs-CRX-Datei herunterladen

Laden Sie Netflix Continue Watching-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

                        Moves the 'Continue Watching' section to the top of your Netflix page!                    

Grundlegende Informationen zur Erweiterung

Name Netflix Continue Watching Netflix Continue Watching
ID oaebpedoiblbapimeeeclbapilnmlpgm
Offizielle URL https://chrome.google.com/webstore/detail/netflix-continue-watching/oaebpedoiblbapimeeeclbapilnmlpgm
Beschreibung Moves the 'Continue Watching' section to the top of your Netflix page!
Dateigröße 133 KB
Installationsanzahl 890
Aktuelle Version 1.0.4
Letztes Update 2016-10-06
Veröffentlichungsdatum 2016-10-06
Bewertung 2.80/5 Insgesamt 10 Bewertungen
Entwickler michaelcook.tech
Zahlungsart free
Erweiterungswebsite http://yays.co
Unterstützte Sprachen en-GB
manifest.json
{
    "name": "Netflix Continue Watching",
    "version": "1.0.4",
    "description": "Moves the 'Continue Watching' section to the top of your Netflix page!",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "activeTab",
        "",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": {
            "16": "icon16.png",
            "19": "icon19.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_icon": {
            "16": "icon16.png",
            "19": "icon19.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/browse"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}