Media Grabber

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

什么是Media Grabber?

Media Grabber是由camerongu3开发的Chrome扩展程序,该扩展的主要功能是“Get the media URL of a page's most recently played audio/video (and then do something with it).”。

扩展截图

screenshot
screenshot
screenshot

下载Media Grabber扩展crx文件

下载Media Grabber扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Media Grabber Media Grabber
ID ompogmmmcfgapifeghieaklpblkkoloo
官方URL https://chromewebstore.google.com/detail/media-grabber/ompogmmmcfgapifeghieaklpblkkoloo
简介 Get the media URL of a page's most recently played audio/video (and then do something with it).
文件大小 45.6 KB
安装次数 6,486
当前版本 1.2
更新时间 2021-02-09
上架时间 2016-06-05
评分 2.80/5 共20次评分
开发者 camerongu3
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/camreon/media-grabber/blob/master/README.md
支持的语言 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'"
}