Videojs Webextension

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

Qu'est-ce que Videojs Webextension ?

Videojs Webextension est une extension Chrome développée par in7h33nd, et sa fonction principale est "Use video.js rather than downloading, or using the native player to play video.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Videojs Webextension

Téléchargez les fichiers d'extension Videojs Webextension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Videojs Webextension Videojs Webextension
ID cebdpbolebkmgidigfffifoemdcbhibf
URL Officiel https://chromewebstore.google.com/detail/videojs-webextension/cebdpbolebkmgidigfffifoemdcbhibf
Description Use video.js rather than downloading, or using the native player to play video.
Taille du Fichier 485 KB
Nombre d'Installations 3,101
Version Actuelle 1.3.2
Dernière Mise à Jour 2016-07-18
Date de Publication 2016-07-18
Évaluation 4.89/5 Total 9 Évaluations
Développeur in7h33nd
Type de Paiement free
Site Web de l'Extension https://github.com/BrandonOCasey/videojs-chrome-extension
Langues Prises en Charge 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?*"
    ]
}