Media Grabber
Get the media URL of a page's most recently played audio/video (and then do something with it).
Wat is Media Grabber?
Media Grabber is een Chrome-extensie ontwikkeld door camerongu3, en de belangrijkste functie is "Get the media URL of a page's most recently played audio/video (and then do something with it).".
Extensie Screenshots
Download het CRX-bestand van de extensie Media Grabber
Download Media Grabber-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Media Grabber |
ID | ompogmmmcfgapifeghieaklpblkkoloo |
Officiële URL | https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo |
Beschrijving | Get the media URL of a page's most recently played audio/video (and then do something with it). |
Bestandsgrootte | 45.6 KB |
Aantal Installaties | 6,486 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2021-02-09 |
Publicatiedatum | 2016-06-05 |
Beoordeling | 2.80/5 Totaal 20 Beoordelingen |
Ontwikkelaar | camerongu3 |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://github.com/camreon/media-grabber/blob/master/README.md |
Ondersteunde Talen | 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'" } |