Stop AutoPlay

This extension is meant to stop all playing videos

Was ist Stop AutoPlay?

Stop AutoPlay ist eine Chrome-Erweiterung, die von roastario entwickelt wurde, und ihr Hauptmerkmal ist "This extension is meant to stop all playing videos".

Stop AutoPlay-Erweiterungs-CRX-Datei herunterladen

Laden Sie Stop AutoPlay-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                                            

Grundlegende Informationen zur Erweiterung

Name Stop AutoPlay Stop AutoPlay
ID ablmlhnccodemhiobfclbpicbpljldji
Offizielle URL https://chrome.google.com/webstore/detail/stop-autoplay/ablmlhnccodemhiobfclbpicbpljldji
Beschreibung This extension is meant to stop all playing videos
Dateigröße 6.4 KB
Installationsanzahl 76
Aktuelle Version 0.0.3
Letztes Update 2017-10-30
Veröffentlichungsdatum 2017-10-30
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler roastario
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop AutoPlay",
    "description": "This extension is meant to stop all playing videos",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}