Media Grabber
Get the media URL of a page's most recently played audio/video (and then do something with it).
Cos'è Media Grabber?
Media Grabber è un'estensione di Chrome sviluppata da camerongu3, e la sua funzione principale è "Get the media URL of a page's most recently played audio/video (and then do something with it).".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Media Grabber
Scarica i file di estensione Media Grabber in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | ompogmmmcfgapifeghieaklpblkkoloo |
| URL Ufficiale | https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo |
| Descrizione | Get the media URL of a page's most recently played audio/video (and then do something with it). |
| Dimensione del File | 45.6 KB |
| Conteggio Installazioni | 6,486 |
| Versione Corrente | 1.2 |
| Ultimo Aggiornamento | 2021-02-09 |
| Data di Pubblicazione | 2016-06-05 |
| Valutazione | 2.80/5 Totale 20 Valutazioni |
| Sviluppatore | camerongu3 |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina di Aiuto | https://github.com/camreon/media-grabber/blob/master/README.md |
| Lingue Supportate | 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'"
} | |