Asset Collector

Downloads favicon file from Webpage

Cos'è Asset Collector?

Asset Collector è un'estensione di Chrome sviluppata da https://timalexander.com, e la sua funzione principale è "Downloads favicon file from Webpage".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Asset Collector

Scarica i file di estensione Asset Collector 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

                        This is a simple extension which allows you to download the favicon of any website you're on, either as an ICO or PNG file. This is perfect for web developers that find it annoying to collect certain assets from a site.                    

Informazioni di Base sull'Estensione

Nome Asset Collector Asset Collector
ID kfhppocmokcgpgldlmipnbbjnkobnaad
URL Ufficiale https://chromewebstore.google.com/detail/asset-collector/kfhppocmokcgpgldlmipnbbjnkobnaad
Descrizione Downloads favicon file from Webpage
Dimensione del File 15.31 KB
Conteggio Installazioni 22
Versione Corrente 0.1
Ultimo Aggiornamento 2017-10-02
Data di Pubblicazione 2017-10-02
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore https://timalexander.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Asset Collector",
    "description": "Downloads favicon file from Webpage",
    "version": "0.1",
    "minimum_chrome_version": "16.0.884",
    "permissions": [
        "downloads",
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": false,
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "manifest_version": 2
}