M3U8 finder and HLS player

It opens a new tab on a video player

O que é M3U8 finder and HLS player?

M3U8 finder and HLS player é uma extensão do Chrome desenvolvida por https://www.reloltv.com, e sua principal característica é "It opens a new tab on a video player".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão M3U8 finder and HLS player

Baixe arquivos de extensão M3U8 finder and HLS player 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

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

Informações Básicas da Extensão

Nome M3U8 finder and HLS player M3U8 finder and HLS player
ID gijhpnmjcpbddpedmmdihijogkkejfgj
URL Oficial https://chromewebstore.google.com/detail/m3u8-finder-and-hls-playe/gijhpnmjcpbddpedmmdihijogkkejfgj
Descrição It opens a new tab on a video player
Tamanho do Arquivo 2.18 MB
Contagem de Instalações 23,928
Versão Atual 1.1
Última Atualização 2020-12-11
Data de Publicação 2020-12-10
Classificação 4.55/5 Total de 22 Avaliações
Desenvolvedor https://www.reloltv.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://www.reloltv.com/
URL da Página de Política de Privacidade http://www.justas.biz/privacypolicy.htm
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "M3U8 finder and HLS player",
    "description": "It opens a new tab on a video player",
    "version": "1.1",
    "offline_enabled": true,
    "icons": {
        "32": "img\/icon32.png",
        "128": "img\/icon128.png"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "m3u8_options.html"
    },
    "background": {
        "scripts": [
            "background.js",
            "event.js",
            "global.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": "img\/icon128.png",
        "default_popup": "m3u8.html"
    },
    "permissions": [
        "activeTab",
        "",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "web_accessible_resources": [
        "*.js",
        "*.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "script_in_content.js",
                "m3u8.js",
                "background.js"
            ],
            "css": [
                "css\/materialdesignicons.min.css"
            ],
            "run_at": "document_start"
        }
    ],
    "omnibox": {
        "keyword": "m3u8"
    }
}