Asset Collector

Downloads favicon file from Webpage

Wat is Asset Collector?

Asset Collector is een Chrome-extensie ontwikkeld door https://timalexander.com, en de belangrijkste functie is "Downloads favicon file from Webpage".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Asset Collector

Download Asset Collector-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

                        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.                    

Basisinformatie over de Extensie

Naam Asset Collector Asset Collector
ID kfhppocmokcgpgldlmipnbbjnkobnaad
Officiële URL https://chromewebstore.google.com/detail/asset-collector/kfhppocmokcgpgldlmipnbbjnkobnaad
Beschrijving Downloads favicon file from Webpage
Bestandsgrootte 15.31 KB
Aantal Installaties 22
Huidige Versie 0.1
Laatst Bijgewerkt 2017-10-02
Publicatiedatum 2017-10-02
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://timalexander.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}