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'」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| ID | fjmoemhemaejfjodjgnpkelbdgejnpgd |
| 公式URL | 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"
}
} | |