Color Icon

A Chrome Extension to differentiate tabs with the same Favicon

ما هو Color Icon؟

Color Icon هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "A Chrome Extension to differentiate tabs with the same Favicon".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Color Icon

قم بتنزيل ملفات الامتداد Color Icon بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Color Icon is an extension that enables the user to distinguish tabs with the same favicon by marking them with a color of your choice.                    

معلومات أساسية عن التمديد

الاسم Color Icon Color Icon
ID bfmebkjjepnclncmndhcgcmmmchijbop
عنوان URL الرسمي https://chromewebstore.google.com/detail/color-icon/bfmebkjjepnclncmndhcgcmmmchijbop
الوصف A Chrome Extension to differentiate tabs with the same Favicon
حجم الملف 66.6 KB
عدد التثبيتات 52
النسخة الحالية 0.2
آخر تحديث 2018-08-19
تاريخ النشر 2018-08-19
تقييم 3.67/5 مجموع تقييمات 3
المطور Unknown
نوع الدفع free
موقع الإضافة https://github.com/tiagonbotelho/color-icon
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Color Icon",
    "version": "0.2",
    "author": "Tiago Botelho",
    "manifest_version": 2,
    "description": "A Chrome Extension to differentiate tabs with the same Favicon",
    "homepage_url": "https:\/\/github.com\/tiagonbotelho\/color-icon",
    "icons": {
        "16": "icons\/16logo.png",
        "48": "icons\/48logo.png",
        "128": "icons\/128logo.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/helpers.js",
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/19logo.png",
        "default_title": "Color Icon",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "chrome:\/\/favicon\/",
        "tabs",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/favico.js\/favico-0.3.10.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}