Media Grabber
Get the media URL of a page's most recently played audio/video (and then do something with it).
Media Grabberとは何ですか?
Media Grabberはcamerongu3によって開発されたChromeの拡張機能で、その主な機能は「Get the media URL of a page's most recently played audio/video (and then do something with it).」です。
拡張機能のスクリーンショット
Media Grabber拡張機能のCRXファイルをダウンロード
Media Grabber拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chrome extension to show the media URL of a page's most recently played audio/video as an easy alternative to looking at the network tab in dev tools *Instructions:* https://github.com/camreon/media-grabber/blob/master/README.md
拡張機能の基本情報
名前 | Media Grabber |
ID | ompogmmmcfgapifeghieaklpblkkoloo |
公式URL | https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo |
説明 | Get the media URL of a page's most recently played audio/video (and then do something with it). |
ファイルサイズ | 45.6 KB |
インストール数 | 6,486 |
現在のバージョン | 1.2 |
最終更新日 | 2021-02-09 |
公開日 | 2016-06-05 |
評価 | 2.80/5 合計 20 レビュー |
開発者 | camerongu3 |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://github.com/camreon/media-grabber/blob/master/README.md |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Media Grabber", "version": "1.2", "description": "Get the media URL of a page's most recently played audio\/video (and then do something with it).", "icons": { "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icon\/icon.png", "default_popup": "popup.html" }, "permissions": [ "webRequest", "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*", "bookmarks" ], "options_ui": { "page": "options.html", "chrome_style": true }, "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/code.jquery.com; object-src 'self'" } |