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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}