Netflix Continue Playing Clicker

This extension clicks the Netflix "continue playing" Button automatically

Что такое Netflix Continue Playing Clicker?

Netflix Continue Playing Clicker - это расширение Chrome, разработанное limered, и его основная функция - "This extension clicks the Netflix "continue playing" Button automatically".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Netflix Continue Playing Clicker

Скачайте файлы расширений Netflix Continue Playing Clicker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Netflix Continue Playing Clicker Netflix Continue Playing Clicker
ID klgocfagnjnpmjfmbdglcbjpchdbadhc
Официальный URL https://chrome.google.com/webstore/detail/netflix-continue-playing/klgocfagnjnpmjfmbdglcbjpchdbadhc
Описание This extension clicks the Netflix "continue playing" Button automatically
Размер файла 7.21 KB
Количество установок 299
Текущая Версия 1.0
Последнее Обновление 2016-02-18
Дата публикации 2016-02-18
Рейтинг 2.33/5 Всего 9 оценок
Разработчик limered
Тип оплаты free
Поддерживаемые языки 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"
    ]
}