List Sources

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

Co to jest List Sources?

List Sources to rozszerzenie Chrome opracowane przez gyng, a jego główną funkcją jest „Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia List Sources

Pobierz pliki rozszerzeń List Sources w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa List Sources List Sources
ID oapgpbbeejfgmjejkjgnikaepmfbccpb
Oficjalny URL https://chromewebstore.google.com/detail/list-sources/oapgpbbeejfgmjejkjgnikaepmfbccpb
Opis Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V
Rozmiar pliku 76.54 KB
Liczba instalacji 108
Aktualna Wersja 0.0.4
Ostatnia Aktualizacja 2020-11-19
Data Publikacji 2018-04-30
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper gyng
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/gyng/save-in
Obsługiwane Języki 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"
    }
}