Always Show HTML5 Video Controls

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

Co to jest Always Show HTML5 Video Controls?

Always Show HTML5 Video Controls to rozszerzenie Chrome opracowane przez Sterling Phillips, a jego główną funkcją jest „This tiny extension makes all HTML5 video elements show controls by default.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Always Show HTML5 Video Controls

Pobierz pliki rozszerzeń Always Show HTML5 Video Controls w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Always Show HTML5 Video Controls Always Show HTML5 Video Controls
ID olapbecfjokjlmkkdldjfmdolkkadebm
Oficjalny URL https://chrome.google.com/webstore/detail/always-show-html5-video-c/olapbecfjokjlmkkdldjfmdolkkadebm
Opis This tiny extension makes all HTML5 video elements show controls by default.
Rozmiar pliku 6.79 KB
Liczba instalacji 3,000
Aktualna Wersja 1.14
Ostatnia Aktualizacja 2017-04-18
Data Publikacji 2017-04-18
Ocena 4.00/5 Łącznie 32 Oceny
Deweloper Sterling Phillips
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}