List Sources

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

O que é List Sources?

List Sources é uma extensão do Chrome desenvolvida por gyng, e sua principal característica é "Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão List Sources

Baixe arquivos de extensão List Sources no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome List Sources List Sources
ID oapgpbbeejfgmjejkjgnikaepmfbccpb
URL Oficial https://chromewebstore.google.com/detail/list-sources/oapgpbbeejfgmjejkjgnikaepmfbccpb
Descrição Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V
Tamanho do Arquivo 76.54 KB
Contagem de Instalações 108
Versão Atual 0.0.4
Última Atualização 2020-11-19
Data de Publicação 2018-04-30
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor gyng
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/gyng/save-in
Idiomas Suportados 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"
    }
}