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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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"
    }
}