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 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 |
عنوان صفحة المساعدة | 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'" } |