Native FLV Playback

Allow the browser to play FLV video urls (flv) 'natively'

什麼是Native FLV Playback?

Native FLV Playback是由klouskingsley開發的Chrome擴展程式,該擴展的主要功能是“Allow the browser to play FLV video urls (flv) 'natively'”。

擴展截圖

screenshot

下載Native FLV Playback擴展crx文件

下載Native FLV Playback擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Allow the browser to play FLV video urls 'natively'
This extension is a wrapper around the awesome flv.js library: https://github.com/bilibili/flv.js

Clicking on the extension icon will let you play any flv embedded as a video html element in the current page.

New: type flv, then tab, then your flv URL to play the URL in the extension.

Features:
Enable/Disable the url catcher by clicking on the icon.
Switch between flv.js 1.5.x, 1.4.x, 1.3.x, 1.2.x, 1.1.x, 1.0.x in the settings.

Code repository here: https://github.com/klouskingsley/chrome-flv                    

擴展基本資訊

名稱 Native FLV Playback Native FLV Playback
ID fjmoemhemaejfjodjgnpkelbdgejnpgd
官方網址 https://chromewebstore.google.com/detail/native-flv-playback/fjmoemhemaejfjodjgnpkelbdgejnpgd
簡介 Allow the browser to play FLV video urls (flv) 'natively'
檔案大小 261 KB
安裝次數 2,519
目前版本 0.12.4
更新時間 2019-05-17
上架時間 2019-05-12
評分 5.00/5 共 1 次評分
開發者 klouskingsley
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Native FLV Playback",
    "version": "0.12.4",
    "description": "Allow the browser to play FLV video urls (flv) 'natively'",
    "manifest_version": 2,
    "icons": {
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "event.js",
            "global.js"
        ]
    },
    "content_security_policy": "script-src 'self' blob:; object-src 'self'",
    "permissions": [
        "tabs",
        "*:\/\/*\/*.flv*",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_title": "Disable",
        "default_icon": "img\/icon128.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "*.js",
        "*.html"
    ],
    "omnibox": {
        "keyword": "flv"
    }
}