Netflix Continue Playing Clicker

This extension clicks the Netflix "continue playing" Button automatically

Co to jest Netflix Continue Playing Clicker?

Netflix Continue Playing Clicker to rozszerzenie Chrome opracowane przez limered, a jego główną funkcją jest „This extension clicks the Netflix "continue playing" Button automatically”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Netflix Continue Playing Clicker

Pobierz pliki rozszerzeń Netflix Continue Playing Clicker 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

                        No more leaving your couch only to click a button during your netflix and chill session.
This extension clicks the Netflix "continue playing" Button automatically.

If you planing on falling asleep or something else ;) you can always turn it off using the button in the taskbar.

Have Fun                    

Podstawowe informacje o rozszerzeniu

Nazwa Netflix Continue Playing Clicker Netflix Continue Playing Clicker
ID klgocfagnjnpmjfmbdglcbjpchdbadhc
Oficjalny URL https://chrome.google.com/webstore/detail/netflix-continue-playing/klgocfagnjnpmjfmbdglcbjpchdbadhc
Opis This extension clicks the Netflix "continue playing" Button automatically
Rozmiar pliku 7.21 KB
Liczba instalacji 299
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-02-18
Data Publikacji 2016-02-18
Ocena 2.33/5 Łącznie 9 Oceny
Deweloper limered
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix Continue Playing Clicker",
    "description": "This extension clicks the Netflix \"continue playing\" Button automatically",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.netflix.com\/*"
            ],
            "js": [
                "content\/content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/background_script.js"
        ]
    },
    "page_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Netflix Clicker",
        "default_popup": "pageaction\/pageaction_popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}