Media Grabber
Get the media URL of a page's most recently played audio/video (and then do something with it).
¿Qué es Media Grabber?
Media Grabber es una extensión de Chrome desarrollada por camerongu3, y su función principal es "Get the media URL of a page's most recently played audio/video (and then do something with it).".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Media Grabber
Descarga archivos de extensión Media Grabber en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Media Grabber |
ID | ompogmmmcfgapifeghieaklpblkkoloo |
URL Oficial | https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo |
Descripción | Get the media URL of a page's most recently played audio/video (and then do something with it). |
Tamaño del Archivo | 45.6 KB |
Cantidad de Instalaciones | 6,486 |
Versión Actual | 1.2 |
Última Actualización | 2021-02-09 |
Fecha de Publicación | 2016-06-05 |
Calificación | 2.80/5 Total de 20 Calificaciones |
Desarrollador | camerongu3 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://github.com/camreon/media-grabber/blob/master/README.md |
Idiomas Soportados | 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'" } |