Media Grabber
Get the media URL of a page's most recently played audio/video (and then do something with it).
Was ist Media Grabber?
Media Grabber ist eine Chrome-Erweiterung, die von camerongu3 entwickelt wurde, und ihr Hauptmerkmal ist "Get the media URL of a page's most recently played audio/video (and then do something with it).".
Erweiterungsscreenshots
Media Grabber-Erweiterungs-CRX-Datei herunterladen
Laden Sie Media Grabber-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Media Grabber |
ID | ompogmmmcfgapifeghieaklpblkkoloo |
Offizielle URL | https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo |
Beschreibung | Get the media URL of a page's most recently played audio/video (and then do something with it). |
Dateigröße | 45.6 KB |
Installationsanzahl | 6,486 |
Aktuelle Version | 1.2 |
Letztes Update | 2021-02-09 |
Veröffentlichungsdatum | 2016-06-05 |
Bewertung | 2.80/5 Insgesamt 20 Bewertungen |
Entwickler | camerongu3 |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/camreon/media-grabber/blob/master/README.md |
Unterstützte Sprachen | 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'" } |