AutoPlayOff

This extension will find all of the videos on the page that auto play and stop them from doing so

¿Qué es AutoPlayOff?

AutoPlayOff es una extensión de Chrome desarrollada por aothomas, y su función principal es "This extension will find all of the videos on the page that auto play and stop them from doing so".

Descargar Archivo CRX de la Extensión AutoPlayOff

Descarga archivos de extensión AutoPlayOff en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        A Chrome extension that allows you to mute or remove videos on websites. This is supposed to target those annoying, intrusive video advertisements. You can use this extension if you still want to support the website by leaving ads, but making sure videos don't popup                    

Información Básica de la Extensión

Nombre AutoPlayOff AutoPlayOff
ID kkdhilabpimmejlcmfjilfgfkdghkndg
URL Oficial https://chrome.google.com/webstore/detail/autoplayoff/kkdhilabpimmejlcmfjilfgfkdghkndg
Descripción This extension will find all of the videos on the page that auto play and stop them from doing so
Tamaño del Archivo 669 KB
Cantidad de Instalaciones 16
Versión Actual 1.0
Última Actualización 2018-06-24
Fecha de Publicación 2018-06-24
Desarrollador aothomas
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoPlayOff",
    "description": "This extension will find all of the videos on the page that auto play and stop them from doing so",
    "version": "1.0",
    "icons": {
        "16": "DisabledSpeakerIcon16.png",
        "48": "DisabledSpeakerIcon48.png",
        "128": "DisabledSpeakerIcon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.slim.min.js",
                "ContentScript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "options.html"
}