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
公式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
Eメール [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
}