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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}