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

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

확장 프로그램 사용 설명서

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