M3U8 finder and HLS player

It opens a new tab on a video player

What is M3U8 finder and HLS player?

M3U8 finder and HLS player is a Chrome extension developed by https://www.reloltv.com, and its main feature is "It opens a new tab on a video player".

Extension Screenshots

screenshot
screenshot

Download M3U8 finder and HLS player Extension CRX File

Download M3U8 finder and HLS player extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name M3U8 finder and HLS player M3U8 finder and HLS player
ID gijhpnmjcpbddpedmmdihijogkkejfgj
Official URL https://chromewebstore.google.com/detail/m3u8-finder-and-hls-playe/gijhpnmjcpbddpedmmdihijogkkejfgj
Description It opens a new tab on a video player
File Size 2.18 MB
Installation Count 23,928
Current Version 1.1
Last Updated 2020-12-11
Publish Date 2020-12-10
Rating 4.55/5 Total 22 Ratings
Developer https://www.reloltv.com
Email [email protected]
Payment Type free
Extension Website http://www.reloltv.com/
Privacy Policy Page URL http://www.justas.biz/privacypolicy.htm
Supported Languages 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"
    }
}