Pixelate

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

What is Pixelate?

Pixelate is a Chrome extension developed by Marat Dyatko, and its main feature is "Reduce visual noise by making all tab icons to follow the same style.".

Extension Screenshots

screenshot

Download Pixelate Extension CRX File

Download Pixelate extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Pixelate Pixelate
ID ploffbpabbckaipfbpkkjjgkoapfkccj
Official URL https://chromewebstore.google.com/detail/pixelate/ploffbpabbckaipfbpkkjjgkoapfkccj
Description Reduce visual noise by making all tab icons to follow the same style.
File Size 47.75 KB
Installation Count 46
Current Version 1.0.3
Last Updated 2017-06-01
Publish Date 2017-06-01
Rating 5.00/5 Total 2 Ratings
Developer Marat Dyatko
Email [email protected]
Payment Type free
Extension Website https://github.com/vectart/pixelate-chrome-extension
Help Page URL https://github.com/vectart/pixelate-chrome-extension/issues
Supported Languages 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"
        }
    ]
}