Netflix Continue Watching

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

Co to jest Netflix Continue Watching?

Netflix Continue Watching to rozszerzenie Chrome opracowane przez michaelcook.tech, a jego główną funkcją jest „Moves the 'Continue Watching' section to the top of your Netflix page!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Netflix Continue Watching

Pobierz pliki rozszerzeń Netflix Continue Watching w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Netflix Continue Watching Netflix Continue Watching
ID oaebpedoiblbapimeeeclbapilnmlpgm
Oficjalny URL https://chrome.google.com/webstore/detail/netflix-continue-watching/oaebpedoiblbapimeeeclbapilnmlpgm
Opis Moves the 'Continue Watching' section to the top of your Netflix page!
Rozmiar pliku 133 KB
Liczba instalacji 890
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2016-10-06
Data Publikacji 2016-10-06
Ocena 2.80/5 Łącznie 10 Oceny
Deweloper michaelcook.tech
Typ Płatności free
Strona Rozszerzenia http://yays.co
Obsługiwane Języki 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"
}