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
官方網址 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'"
}