List Sources

Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V

List Sources란 무엇입니까?

List Sources은(는) gyng에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V"입니다.

확장 프로그램 스크린샷

screenshot

List Sources 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds a button to list all sources for videos, images, and audio elements on a page.

Attempts to extract background images, scans for dynamically added media, and includes previews for sources.

Only works for HTML media (does not work for YouTube and sites that do not use basic HTML media).                    

확장 프로그램 기본 정보

이름 List Sources List Sources
ID oapgpbbeejfgmjejkjgnikaepmfbccpb
공식 URL https://chromewebstore.google.com/detail/list-sources/oapgpbbeejfgmjejkjgnikaepmfbccpb
설명 Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V
파일 크기 76.54 KB
설치 횟수 108
현재 버전 0.0.4
최근 업데이트 2020-11-19
출시 날짜 2018-04-30
평점 4.00/5 총 1 개의 평점
개발자 gyng
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/gyng/save-in
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "0.0.4",
    "default_locale": "en",
    "developer": {
        "name": "Ng Guoyou",
        "url": "https:\/\/github.com\/gyng\/list-sources"
    },
    "homepage_url": "https:\/\/github.com\/gyng\/list-sources",
    "background": {
        "scripts": [
            "src\/background\/index.js"
        ]
    },
    "permissions": [
        "",
        "activeTab",
        "tabs",
        "downloads",
        "webRequest"
    ],
    "commands": {
        "toggle-active": {
            "suggested_key": {
                "default": "Ctrl+Shift+V"
            },
            "description": "Toggle source listing"
        }
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/ic_photo_library_black_48dp_2x.png",
            "32": "icons\/ic_photo_library_black_48dp_2x.png"
        },
        "default_title": "List sources (Ctrl+Shift+V)"
    },
    "icons": {
        "48": "icons\/ic_photo_library_black_48dp_1x.png",
        "96": "icons\/ic_photo_library_black_48dp_2x.png"
    }
}