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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Grabs m3u8 webRequests from visited web pages and provides options for openning them."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Video m3u8 Sniffer - Find HLS Streaming URLs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
    }
}