Media Grabber

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

What is Media Grabber?

Media Grabber is a Chrome extension developed by camerongu3, and its main feature is "Get the media URL of a page's most recently played audio/video (and then do something with it).".

Extension Screenshots

screenshot
screenshot
screenshot

Download Media Grabber Extension CRX File

Download Media Grabber extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Media Grabber Media Grabber
ID ompogmmmcfgapifeghieaklpblkkoloo
Official URL https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo
Description Get the media URL of a page's most recently played audio/video (and then do something with it).
File Size 45.6 KB
Installation Count 6,486
Current Version 1.2
Last Updated 2021-02-09
Publish Date 2016-06-05
Rating 2.80/5 Total 20 Ratings
Developer camerongu3
Email [email protected]
Payment Type free
Help Page URL https://github.com/camreon/media-grabber/blob/master/README.md
Supported Languages 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'"
}