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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย camerongu3 และคุณลักษณะหลักของมันคือ "Get the media URL of a page's most recently played audio/video (and then do something with it)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Media Grabber
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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'" } |