List Sources

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

Cos'è List Sources?

List Sources è un'estensione di Chrome sviluppata da gyng, e la sua funzione principale è "Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione List Sources

Scarica i file di estensione List Sources in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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).                    

Informazioni di Base sull'Estensione

Nome List Sources List Sources
ID oapgpbbeejfgmjejkjgnikaepmfbccpb
URL Ufficiale https://chromewebstore.google.com/detail/list-sources/oapgpbbeejfgmjejkjgnikaepmfbccpb
Descrizione Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V
Dimensione del File 76.54 KB
Conteggio Installazioni 108
Versione Corrente 0.0.4
Ultimo Aggiornamento 2020-11-19
Data di Pubblicazione 2018-04-30
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore gyng
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/gyng/save-in
Lingue Supportate 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"
    }
}