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
公式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
Eメール [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"
    }
}