Video m3u8 Sniffer - Find HLS Streaming URLs

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

Cos'è Video m3u8 Sniffer - Find HLS Streaming URLs?

Video m3u8 Sniffer - Find HLS Streaming URLs è un'estensione di Chrome sviluppata da rickstam, e la sua funzione principale è "Grabs m3u8 webRequests from visited web pages and provides options for openning them.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Video m3u8 Sniffer - Find HLS Streaming URLs

Scarica i file di estensione Video m3u8 Sniffer - Find HLS Streaming URLs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Video m3u8 Sniffer - Find HLS Streaming URLs Video m3u8 Sniffer - Find HLS Streaming URLs
ID akkncdpkjlfanomlnpmmolafofpnpjgn
URL Ufficiale https://chromewebstore.google.com/detail/video-m3u8-sniffer-find-h/akkncdpkjlfanomlnpmmolafofpnpjgn
Descrizione Grabs m3u8 webRequests from visited web pages and provides options for openning them.
Dimensione del File 30.17 KB
Conteggio Installazioni 35,987
Versione Corrente 1.1.0
Ultimo Aggiornamento 2023-08-28
Data di Pubblicazione 2021-03-16
Valutazione 4.36/5 Totale 39 Valutazioni
Sviluppatore rickstam
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://sigmafxdx.com/m3u8Sniffer/
URL della Pagina di Aiuto http://sigmafxdx.com/m3u8Sniffer/
Lingue Supportate 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
    }
}