Asset Collector

Downloads favicon file from Webpage

Asset Collector là gì?

Asset Collector là một tiện ích mở rộng Chrome được phát triển bởi https://timalexander.com, và tính năng chính của nó là "Downloads favicon file from Webpage".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Asset Collector

Tải xuống các tệp mở rộng Asset Collector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Asset Collector Asset Collector
ID kfhppocmokcgpgldlmipnbbjnkobnaad
URL Chính Thức https://chromewebstore.google.com/detail/asset-collector/kfhppocmokcgpgldlmipnbbjnkobnaad
Mô tả Downloads favicon file from Webpage
Kích Thước Tệp 15.31 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2017-10-02
Ngày Phát Hành 2017-10-02
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://timalexander.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}