Asset Collector

Downloads favicon file from Webpage

Что такое Asset Collector?

Asset Collector - это расширение Chrome, разработанное https://timalexander.com, и его основная функция - "Downloads favicon file from Webpage".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Asset Collector

Скачайте файлы расширений Asset Collector в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Asset Collector Asset Collector
ID kfhppocmokcgpgldlmipnbbjnkobnaad
Официальный URL https://chromewebstore.google.com/detail/asset-collector/kfhppocmokcgpgldlmipnbbjnkobnaad
Описание Downloads favicon file from Webpage
Размер файла 15.31 KB
Количество установок 22
Текущая Версия 0.1
Последнее Обновление 2017-10-02
Дата публикации 2017-10-02
Рейтинг 4.00/5 Всего 1 оценок
Разработчик https://timalexander.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
}