Netflix Stop Autoplay

Stop netflix from autoplaying!

O que é Netflix Stop Autoplay?

Netflix Stop Autoplay é uma extensão do Chrome desenvolvida por marcdwyer1738, e sua principal característica é "Stop netflix from autoplaying!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Netflix Stop Autoplay

Baixe arquivos de extensão Netflix Stop Autoplay 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

                        Prevents Netflix from autoplaying videos on the homepage.

Recently Netflix has allowed users to disable autoplaying content on their website. For more details on how to disable see here: https://help.netflix.com/en/node/2102.


Experience any issues? Open up an issue in the repository or e-mail me at [email protected]!

https://github.com/MarcDwyer/netflix-stop-autoplay


changelog:
2.7.0 
A lot less code and more efficient
2.5.0:
   Reverted some optimizations as it introduced new bugs                    

Informações Básicas da Extensão

Nome Netflix Stop Autoplay Netflix Stop Autoplay
ID fbcmkdogjehincilpicohipinoobijem
URL Oficial https://chromewebstore.google.com/detail/netflix-stop-autoplay/fbcmkdogjehincilpicohipinoobijem
Descrição Stop netflix from autoplaying!
Tamanho do Arquivo 455 KB
Contagem de Instalações 143
Versão Atual 2.7
Última Atualização 2020-09-13
Data de Publicação 2020-05-24
Classificação 4.67/5 Total de 3 Avaliações
Desenvolvedor marcdwyer1738
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/MarcDwyer/netflix-stop-autoplay
URL da Página de Ajuda https://github.com/MarcDwyer/netflix-stop-autoplay
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix Stop Autoplay",
    "description": "Stop netflix from autoplaying!",
    "version": "2.7",
    "browser_action": {
        "default_icon": "icon_green.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/",
                "https:\/\/www.netflix.com\/browse",
                "https:\/\/www.netflix.com\/browse\/*",
                "https:\/\/www.netflix.com\/browse\/*\/**"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon_green.png",
        "48": "icon_green.png",
        "128": "icon_green.png"
    },
    "permissions": [
        "storage"
    ]
}