Media Source Extractor

Copy media source from embedded players and download links to the clipboard.

Media Source Extractor란 무엇입니까?

Media Source Extractor은(는) rinseandrepeat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy media source from embedded players and download links to the clipboard."입니다.

확장 프로그램 스크린샷

screenshot

Media Source Extractor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Copy media source from embedded players and download links to the clipboard for pasting into your favourite stand alone video player etc. Light weight and configurable with domain whitelist and file types.

NOTES: Works on the request level so you have to initiate the request for it to be copied e.g. pressing play on a video / clicking on a download link. Does not work on youtube!                    

확장 프로그램 기본 정보

이름 Media Source Extractor Media Source Extractor
ID oopeljipllddhgmnkpngbelnjebjailm
공식 URL https://chrome.google.com/webstore/detail/media-source-extractor/oopeljipllddhgmnkpngbelnjebjailm
설명 Copy media source from embedded players and download links to the clipboard.
파일 크기 13.34 KB
설치 횟수 91
현재 버전 1.0.0
최근 업데이트 2021-01-15
출시 날짜 2021-01-15
개발자 rinseandrepeat
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/isometimesgit/media-source-extractor
도움말 페이지 URL https://github.com/isometimesgit/media-source-extractor
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Media Source Extractor",
    "description": "Copy media source from embedded players and download links to the clipboard.",
    "version": "1.0.0",
    "icons": {
        "128": "\/assets\/icon-128.png"
    },
    "background": {
        "scripts": [
            "\/js\/settings.js",
            "\/js\/util.js",
            "\/js\/main.js"
        ]
    },
    "browser_action": {
        "browser_style": true,
        "default_popup": "\/html\/options.html",
        "default_icon": {
            "128": "\/assets\/icon-128.png"
        }
    },
    "options_ui": {
        "page": "\/html\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "",
        "clipboardWrite",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "storage"
    ]
}