Media Grabber

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

Co je Media Grabber?

Media Grabber je rozšíření Chrome vyvinuté camerongu3, a jeho hlavní funkcí je „Get the media URL of a page's most recently played audio/video (and then do something with it).“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Media Grabber

Stáhněte si soubory rozšíření Media Grabber ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Media Grabber Media Grabber
ID ompogmmmcfgapifeghieaklpblkkoloo
Oficiální URL https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo
Popis Get the media URL of a page's most recently played audio/video (and then do something with it).
Velikost souboru 45.6 KB
Počet instalací 6,486
Aktuální Verze 1.2
Poslední Aktualizace 2021-02-09
Datum Vydání 2016-06-05
Hodnocení 2.80/5 Celkem 20 Hodnocení
Vývojář camerongu3
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/camreon/media-grabber/blob/master/README.md
Podporované Jazyky 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'"
}