Netflix Continue Playing Clicker

This extension clicks the Netflix "continue playing" Button automatically

O que é Netflix Continue Playing Clicker?

Netflix Continue Playing Clicker é uma extensão do Chrome desenvolvida por limered, e sua principal característica é "This extension clicks the Netflix "continue playing" Button automatically".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Netflix Continue Playing Clicker

Baixe arquivos de extensão Netflix Continue Playing Clicker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Netflix Continue Playing Clicker Netflix Continue Playing Clicker
ID klgocfagnjnpmjfmbdglcbjpchdbadhc
URL Oficial https://chrome.google.com/webstore/detail/netflix-continue-playing/klgocfagnjnpmjfmbdglcbjpchdbadhc
Descrição This extension clicks the Netflix "continue playing" Button automatically
Tamanho do Arquivo 7.21 KB
Contagem de Instalações 299
Versão Atual 1.0
Última Atualização 2016-02-18
Data de Publicação 2016-02-18
Classificação 2.33/5 Total de 9 Avaliações
Desenvolvedor limered
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}