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 |
公式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 |
Eメール | [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 } } |