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.

什么是No AutoPlay?

No AutoPlay是由jccovey开发的Chrome扩展程序,该扩展的主要功能是“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.”。

下载No AutoPlay扩展crx文件

下载No AutoPlay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 No AutoPlay No AutoPlay
ID kpcjcnadodbmcfhkknekeofhidnkjeii
官方URL https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii
简介 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.
文件大小 4.07 KB
安装次数 116
当前版本 1.0.0
更新时间 2017-12-06
上架时间 2017-12-06
评分 3.00/5 共7次评分
开发者 jccovey
付费类型 free
支持的语言 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
}