Native FLV Playback

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

O que é Native FLV Playback?

Native FLV Playback é uma extensão do Chrome desenvolvida por klouskingsley, e sua principal característica é "Allow the browser to play FLV video urls (flv) 'natively'".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Native FLV Playback

Baixe arquivos de extensão Native FLV Playback no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Native FLV Playback Native FLV Playback
ID fjmoemhemaejfjodjgnpkelbdgejnpgd
URL Oficial https://chromewebstore.google.com/detail/native-flv-playback/fjmoemhemaejfjodjgnpkelbdgejnpgd
Descrição Allow the browser to play FLV video urls (flv) 'natively'
Tamanho do Arquivo 261 KB
Contagem de Instalações 2,519
Versão Atual 0.12.4
Última Atualização 2019-05-17
Data de Publicação 2019-05-12
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor klouskingsley
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}