List Sources

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

Was ist List Sources?

List Sources ist eine Chrome-Erweiterung, die von gyng entwickelt wurde, und ihr Hauptmerkmal ist "Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V".

Erweiterungsscreenshots

screenshot

List Sources-Erweiterungs-CRX-Datei herunterladen

Laden Sie List Sources-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name List Sources List Sources
ID oapgpbbeejfgmjejkjgnikaepmfbccpb
Offizielle URL https://chromewebstore.google.com/detail/list-sources/oapgpbbeejfgmjejkjgnikaepmfbccpb
Beschreibung Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V
Dateigröße 76.54 KB
Installationsanzahl 108
Aktuelle Version 0.0.4
Letztes Update 2020-11-19
Veröffentlichungsdatum 2018-04-30
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler gyng
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/gyng/save-in
Unterstützte Sprachen 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"
    }
}