Videojs Webextension

Use video.js rather than downloading, or using the native player to play video.

Co je Videojs Webextension?

Videojs Webextension je rozšíření Chrome vyvinuté in7h33nd, a jeho hlavní funkcí je „Use video.js rather than downloading, or using the native player to play video.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Videojs Webextension

Stáhněte si soubory rozšíření Videojs Webextension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Use Video.js to enhance your browsers native video playback!

Features:

* Adds support for playing m3u8 playlists natively
* Options to turn support on or off
* options to turn autoplay on or off

Future Features

* re-write other web players and html players with video.js
* add support for more formats that are not natively supported                    

Základní Informace o Rozšíření

Název Videojs Webextension Videojs Webextension
ID cebdpbolebkmgidigfffifoemdcbhibf
Oficiální URL https://chromewebstore.google.com/detail/videojs-webextension/cebdpbolebkmgidigfffifoemdcbhibf
Popis Use video.js rather than downloading, or using the native player to play video.
Velikost souboru 485 KB
Počet instalací 3,101
Aktuální Verze 1.3.2
Poslední Aktualizace 2016-07-18
Datum Vydání 2016-07-18
Hodnocení 4.89/5 Celkem 9 Hodnocení
Vývojář in7h33nd
Typ Platby free
Webové stránky Rozšíření https://github.com/BrandonOCasey/videojs-chrome-extension
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "name": "Videojs Webextension",
    "version": "1.3.2",
    "description": "Use video.js rather than downloading, or using the native player to play video.",
    "author": "Brandon Casey",
    "homepage_url": "https:\/\/github.com\/BrandonOCasey\/videojs-webextension",
    "background": {
        "scripts": [
            "background\/index.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "img\/videojs-logo-16.png",
        "48": "img\/videojs-logo-48.png",
        "128": "img\/videojs-logo-128.png"
    },
    "browser_action": {
        "default_title": "videojs-webextension",
        "default_popup": "popup\/index.html"
    },
    "options_ui": {
        "page": "options\/index.html",
        "chrome_style": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "js": [
                "client\/index.js"
            ],
            "css": [
                "client\/index.css"
            ],
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/*.m3u8",
                "*:\/\/*\/*.m3u8?*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*.m3u8",
        "*:\/\/*\/*.m3u8?*"
    ]
}