AutoPlayOff

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

Vad är AutoPlayOff?

AutoPlayOff är en Chrome-tillägg utvecklad av aothomas, och dess huvudfunktion är "This extension will find all of the videos on the page that auto play and stop them from doing so".

Ladda ner AutoPlayOff-förlängningens CRX-fil

Ladda ner AutoPlayOff-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn AutoPlayOff AutoPlayOff
ID kkdhilabpimmejlcmfjilfgfkdghkndg
Officiell webbadress https://chrome.google.com/webstore/detail/autoplayoff/kkdhilabpimmejlcmfjilfgfkdghkndg
Beskrivning This extension will find all of the videos on the page that auto play and stop them from doing so
Filstorlek 669 KB
Antal Installationer 16
Aktuell Version 1.0
Senast Uppdaterad 2018-06-24
Publiceringsdatum 2018-06-24
Utvecklare aothomas
Betalningssätt free
Stödda Språk 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"
}