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文件

下載List Sources擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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