Native FLV Playback

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

Native FLV Playback là gì?

Native FLV Playback là một tiện ích mở rộng Chrome được phát triển bởi klouskingsley, và tính năng chính của nó là "Allow the browser to play FLV video urls (flv) 'natively'".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Native FLV Playback

Tải xuống các tệp mở rộng Native FLV Playback dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Native FLV Playback Native FLV Playback
ID fjmoemhemaejfjodjgnpkelbdgejnpgd
URL Chính Thức https://chromewebstore.google.com/detail/native-flv-playback/fjmoemhemaejfjodjgnpkelbdgejnpgd
Mô tả Allow the browser to play FLV video urls (flv) 'natively'
Kích Thước Tệp 261 KB
Số Lần Cài Đặt 2,519
Phiên Bản Hiện Tại 0.12.4
Cập Nhật Lần Cuối 2019-05-17
Ngày Phát Hành 2019-05-12
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển klouskingsley
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}