Media Grabber
Get the media URL of a page's most recently played audio/video (and then do something with it).
Hvad er Media Grabber?
Media Grabber er en Chrome-udvidelse udviklet af camerongu3, og dens hovedfunktion er "Get the media URL of a page's most recently played audio/video (and then do something with it).".
Udvidelsesskærmbilleder
Download Media Grabber-udvidelses-CRX-fil
Download Media Grabber-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ompogmmmcfgapifeghieaklpblkkoloo |
| Officiel URL | https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo |
| Beskrivelse | Get the media URL of a page's most recently played audio/video (and then do something with it). |
| Filstørrelse | 45.6 KB |
| Antal Installationer | 6,486 |
| Nuværende Version | 1.2 |
| Senest Opdateret | 2021-02-09 |
| Udgivelsesdato | 2016-06-05 |
| Bedømmelse | 2.80/5 Samlet 20 Bedømmelser |
| Udvikler | camerongu3 |
| [email protected] | |
| Betalingsmetode | free |
| Hjælpeside-URL | https://github.com/camreon/media-grabber/blob/master/README.md |
| Understøttede Sprog | 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'"
} | |