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.”。
擴展截圖
下載Video m3u8 Sniffer - Find HLS Streaming URLs擴展crx文件
下載Video m3u8 Sniffer - Find HLS Streaming URLs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | akkncdpkjlfanomlnpmmolafofpnpjgn |
官方網址 | 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 } } |