Video m3u8 Sniffer - Find HLS Streaming URLs

Grabs m3u8 webRequests from visited web pages and provides options for openning them.

Video m3u8 Sniffer - Find HLS Streaming URLs란 무엇입니까?

Video m3u8 Sniffer - Find HLS Streaming URLs은(는) rickstam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Grabs m3u8 webRequests from visited web pages and provides options for openning them."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Video m3u8 Sniffer - Find HLS Streaming URLs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Important Note: This extension will NOT help you access videos from sites like YouTube or Netflix.

This extension intercepts visited web page's network requests and identifies all m3u8 video stream URLs. When a m3u8 URL request is found, it is displayed in a box that overlays the visited page (see image above). Also, you can open the extension's popup window to view and open the first and last m3u8 URLs found for each site.

For example, I use this extension mostly to identify video streams from live TV news streaming pages, and if they use m3u8 files for the stream, I can take that URL and open it separately in another browser window or with other video playing/recording programs like VLC, Kodi, or Jaksta Media Recorder.

Please visit the extension's companion web site for complete details if interested at: http://sigmafxdx.com/m3u8Sniffer                    

확장 프로그램 기본 정보

이름 Video m3u8 Sniffer - Find HLS Streaming URLs Video m3u8 Sniffer - Find HLS Streaming URLs
ID akkncdpkjlfanomlnpmmolafofpnpjgn
공식 URL https://chromewebstore.google.com/detail/video-m3u8-sniffer-find-h/akkncdpkjlfanomlnpmmolafofpnpjgn
설명 Grabs m3u8 webRequests from visited web pages and provides options for openning them.
파일 크기 30.17 KB
설치 횟수 35,987
현재 버전 1.1.0
최근 업데이트 2023-08-28
출시 날짜 2021-03-16
평점 4.36/5 총 39 개의 평점
개발자 rickstam
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://sigmafxdx.com/m3u8Sniffer/
도움말 페이지 URL http://sigmafxdx.com/m3u8Sniffer/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video m3u8 Sniffer - Find HLS Streaming URLs",
    "description": "Grabs m3u8 webRequests from visited web pages and provides options for openning them.",
    "version": "1.1.0",
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "clipboardWrite",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Video m3u8 Sniffer",
        "default_icon": "icons\/m3uSniffer-on-64px.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "icons\/m3uSniffer-on-64px.png",
        "48": "icons\/m3uSniffer-on-64px.png",
        "128": "icons\/m3uSniffer-on-128px.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "asyncwrap.js",
            "logging.js"
        ],
        "persistent": true
    }
}