List Sources

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

Wat is List Sources?

List Sources is een Chrome-extensie ontwikkeld door gyng, en de belangrijkste functie is "Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie List Sources

Download List Sources-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam List Sources List Sources
ID oapgpbbeejfgmjejkjgnikaepmfbccpb
Officiële URL https://chromewebstore.google.com/detail/list-sources/oapgpbbeejfgmjejkjgnikaepmfbccpb
Beschrijving Adds a button to list all sources for videos, images, and audio elements on a page. Shortcut: Ctrl+Shift+V
Bestandsgrootte 76.54 KB
Aantal Installaties 108
Huidige Versie 0.0.4
Laatst Bijgewerkt 2020-11-19
Publicatiedatum 2018-04-30
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar gyng
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/gyng/save-in
Ondersteunde Talen 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"
    }
}