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
}