No AutoPlay

Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.

What is No AutoPlay?

No AutoPlay is a Chrome extension developed by jccovey, and its main feature is "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.".

Download No AutoPlay Extension CRX File

Download No 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

                        Limited to YouTube videos. 

The extension will not prevent HTML5 videos hosted on other websites auto-playing, but for YouTube videos, the extension will pause the video when the page loads.                    

Extension Basic Information

Name No AutoPlay No AutoPlay
ID kpcjcnadodbmcfhkknekeofhidnkjeii
Official URL https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii
Description Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.
File Size 4.07 KB
Installation Count 116
Current Version 1.0.0
Last Updated 2017-12-06
Publish Date 2017-12-06
Rating 3.00/5 Total 7 Ratings
Developer jccovey
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No AutoPlay",
    "version": "1.0.0",
    "description": "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtu.be\/*",
                "https:\/\/*.youtu.be\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "manifest_version": 2
}