Videojs Webextension

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

Videojs Webextension क्या है?

Videojs Webextension in7h33nd द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use video.js rather than downloading, or using the native player to play video."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Videojs Webextension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Videojs Webextension Videojs Webextension
ID cebdpbolebkmgidigfffifoemdcbhibf
आधिकारिक URL https://chromewebstore.google.com/detail/videojs-webextension/cebdpbolebkmgidigfffifoemdcbhibf
विवरण Use video.js rather than downloading, or using the native player to play video.
फ़ाइल का आकार 485 KB
स्थापना संख्या 3,101
वर्तमान संस्करण 1.3.2
अंतिम अपडेट 2016-07-18
प्रकाशन तिथि 2016-07-18
रेटिंग 4.89/5 कुल 9 रेटिंग्स
डेवलपर in7h33nd
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/BrandonOCasey/videojs-chrome-extension
समर्थित भाषाएँ 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?*"
    ]
}