M3U8 finder and HLS player

It opens a new tab on a video player

什么是M3U8 finder and HLS player?

M3U8 finder and HLS player是由https://www.reloltv.com开发的Chrome扩展程序,该扩展的主要功能是“It opens a new tab on a video player”。

扩展截图

screenshot
screenshot

下载M3U8 finder and HLS player扩展crx文件

下载M3U8 finder and HLS player扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 M3U8 finder and HLS player M3U8 finder and HLS player
ID gijhpnmjcpbddpedmmdihijogkkejfgj
官方URL https://chromewebstore.google.com/detail/m3u8-finder-and-hls-playe/gijhpnmjcpbddpedmmdihijogkkejfgj
简介 It opens a new tab on a video player
文件大小 2.18 MB
安装次数 23,928
当前版本 1.1
更新时间 2020-12-11
上架时间 2020-12-10
评分 4.55/5 共22次评分
开发者 https://www.reloltv.com
电子邮箱 [email protected]
付费类型 free
扩展官网 http://www.reloltv.com/
隐私政策页面URL http://www.justas.biz/privacypolicy.htm
支持的语言 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"
    }
}