Pixelate

Reduce visual noise by making all tab icons to follow the same style.

ما هو Pixelate؟

Pixelate هو إضافة Chrome تم تطويرها بواسطة Marat Dyatko، والميزة الرئيسية لها هي "Reduce visual noise by making all tab icons to follow the same style.".

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

screenshot

تحميل ملف CRX للإضافة Pixelate

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

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

                        The extension reduces visual noise by simplifying all browser tab icons using technique inspired by American portrait painter Chuck Close.

Looks best with the Minimal White theme: https://chrome.google.com/webstore/detail/minimal-white/clcbojcafbggjenbeflknhfimpcikmlc

Since it's open-source, please feel free to suggest or contribute improvements on the GitHub page: https://github.com/vectart/pixelate-chrome-extension                    

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

الاسم Pixelate Pixelate
ID ploffbpabbckaipfbpkkjjgkoapfkccj
عنوان URL الرسمي https://chromewebstore.google.com/detail/pixelate/ploffbpabbckaipfbpkkjjgkoapfkccj
الوصف Reduce visual noise by making all tab icons to follow the same style.
حجم الملف 47.75 KB
عدد التثبيتات 46
النسخة الحالية 1.0.3
آخر تحديث 2017-06-01
تاريخ النشر 2017-06-01
تقييم 5.00/5 مجموع تقييمات 2
المطور Marat Dyatko
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/vectart/pixelate-chrome-extension
عنوان صفحة المساعدة https://github.com/vectart/pixelate-chrome-extension/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pixelate",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "Reduce visual noise by making all tab icons to follow the same style.",
    "homepage_url": "https:\/\/github.com\/vectart\/pixelate-chrome-extension",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/close-pixelate.js",
            "js\/google-analytics-bundle.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "",
        "https:\/\/www.google-analytics.com\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}