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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get the media URL of a page's most recently played audio/video (and then do something with it)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Media Grabber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
एक्सटेंशन की मूल जानकारी
नाम | |
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'" } |