Asset Collector

Downloads favicon file from Webpage

什麼是Asset Collector?

Asset Collector是由https://timalexander.com開發的Chrome擴展程式,該擴展的主要功能是“Downloads favicon file from Webpage”。

擴展截圖

screenshot

下載Asset Collector擴展crx文件

下載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
官方網址 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
}