Stop AutoPlay

This extension is meant to stop all playing videos

What is Stop AutoPlay?

Stop AutoPlay is a Chrome extension developed by roastario, and its main feature is "This extension is meant to stop all playing videos".

Download Stop AutoPlay Extension CRX File

Download Stop AutoPlay extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Stop AutoPlay Stop AutoPlay
ID ablmlhnccodemhiobfclbpicbpljldji
Official URL https://chrome.google.com/webstore/detail/stop-autoplay/ablmlhnccodemhiobfclbpicbpljldji
Description This extension is meant to stop all playing videos
File Size 6.4 KB
Installation Count 76
Current Version 0.0.3
Last Updated 2017-10-30
Publish Date 2017-10-30
Rating 4.00/5 Total 1 Ratings
Developer roastario
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}