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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи 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"
        }
    ]
}