Media Grabber
Get the media URL of a page's most recently played audio/video (and then do something with it).
Apa itu Media Grabber?
Media Grabber adalah ekstensi Chrome yang dikembangkan oleh camerongu3, dan fitur utamanya adalah "Get the media URL of a page's most recently played audio/video (and then do something with it).".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Media Grabber
Unduh file ekstensi Media Grabber dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Media Grabber |
ID | ompogmmmcfgapifeghieaklpblkkoloo |
URL Resmi | https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo |
Deskripsi | Get the media URL of a page's most recently played audio/video (and then do something with it). |
Ukuran File | 45.6 KB |
Jumlah Instalasi | 6,486 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2021-02-09 |
Tanggal Publikasi | 2016-06-05 |
Penilaian | 2.80/5 Total 20 Penilaian |
Pengembang | camerongu3 |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/camreon/media-grabber/blob/master/README.md |
Bahasa yang Didukung | 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'" } |