Always Show HTML5 Video Controls

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

Was ist Always Show HTML5 Video Controls?

Always Show HTML5 Video Controls ist eine Chrome-Erweiterung, die von Sterling Phillips entwickelt wurde, und ihr Hauptmerkmal ist "This tiny extension makes all HTML5 video elements show controls by default.".

Erweiterungsscreenshots

screenshot

Always Show HTML5 Video Controls-Erweiterungs-CRX-Datei herunterladen

Laden Sie Always Show HTML5 Video Controls-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name Always Show HTML5 Video Controls Always Show HTML5 Video Controls
ID olapbecfjokjlmkkdldjfmdolkkadebm
Offizielle URL https://chrome.google.com/webstore/detail/always-show-html5-video-c/olapbecfjokjlmkkdldjfmdolkkadebm
Beschreibung This tiny extension makes all HTML5 video elements show controls by default.
Dateigröße 6.79 KB
Installationsanzahl 3,000
Aktuelle Version 1.14
Letztes Update 2017-04-18
Veröffentlichungsdatum 2017-04-18
Bewertung 4.00/5 Insgesamt 32 Bewertungen
Entwickler Sterling Phillips
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}