Media Grabber

Get the media URL of a page's most recently played audio/video (and then do something with it).

O que é Media Grabber?

Media Grabber é uma extensão do Chrome desenvolvida por camerongu3, e sua principal característica é "Get the media URL of a page's most recently played audio/video (and then do something with it).".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Media Grabber

Baixe arquivos de extensão Media Grabber no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Media Grabber Media Grabber
ID ompogmmmcfgapifeghieaklpblkkoloo
URL Oficial https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo
Descrição Get the media URL of a page's most recently played audio/video (and then do something with it).
Tamanho do Arquivo 45.6 KB
Contagem de Instalações 6,486
Versão Atual 1.2
Última Atualização 2021-02-09
Data de Publicação 2016-06-05
Classificação 2.80/5 Total de 20 Avaliações
Desenvolvedor camerongu3
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/camreon/media-grabber/blob/master/README.md
Idiomas Suportados 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'"
}