Always Show HTML5 Video Controls

This tiny extension makes all HTML5 video elements show controls by default.

什么是Always Show HTML5 Video Controls?

Always Show HTML5 Video Controls是由Sterling Phillips开发的Chrome扩展程序,该扩展的主要功能是“This tiny extension makes all HTML5 video elements show controls by default.”。

扩展截图

screenshot

下载Always Show HTML5 Video Controls扩展crx文件

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

扩展使用说明

                        HTML5 video tags have their "Show Controls" attribute set to false by default. This extension looks for video tags on most webpages and sets the "Show Controls" attribute to true. Does not take action on the following sites to prevent conflicts with proprietary video controls:
youtube.com
netflix.com
vimeo.com
dailymotion.com
hulu.com
twitch.tv
liveleak.com
vine.co                    

扩展基本信息

名称 Always Show HTML5 Video Controls Always Show HTML5 Video Controls
ID olapbecfjokjlmkkdldjfmdolkkadebm
官方URL https://chrome.google.com/webstore/detail/always-show-html5-video-c/olapbecfjokjlmkkdldjfmdolkkadebm
简介 This tiny extension makes all HTML5 video elements show controls by default.
文件大小 6.79 KB
安装次数 3,000
当前版本 1.14
更新时间 2017-04-18
上架时间 2017-04-18
评分 4.00/5 共32次评分
开发者 Sterling Phillips
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Always Show HTML5 Video Controls",
    "description": "This tiny extension makes all HTML5 video elements show controls by default.",
    "version": "1.14",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.netflix.com\/*",
                "*:\/\/*.vimeo.com\/*",
                "*:\/\/*.dailymotion.com\/*",
                "*:\/\/*.hulu.com\/*",
                "*:\/\/*.twitch.tv\/*",
                "*:\/\/*.liveleak.com\/*",
                "*:\/\/*.vine.co\/*",
                "*:\/\/youtube.com\/*",
                "*:\/\/youtu.be\/*",
                "*:\/\/netflix.com\/*",
                "*:\/\/vimeo.com\/*",
                "*:\/\/dailymotion.com\/*",
                "*:\/\/hulu.com\/*",
                "*:\/\/twitch.tv\/*",
                "*:\/\/liveleak.com\/*",
                "*:\/\/vine.co\/*"
            ],
            "js": [
                "alwaysshowvideocontrols.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}