Pixelate

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

Was ist Pixelate?

Pixelate ist eine Chrome-Erweiterung, die von Marat Dyatko entwickelt wurde, und ihr Hauptmerkmal ist "Reduce visual noise by making all tab icons to follow the same style.".

Erweiterungsscreenshots

screenshot

Pixelate-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pixelate-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Pixelate Pixelate
ID ploffbpabbckaipfbpkkjjgkoapfkccj
Offizielle URL https://chromewebstore.google.com/detail/pixelate/ploffbpabbckaipfbpkkjjgkoapfkccj
Beschreibung Reduce visual noise by making all tab icons to follow the same style.
Dateigröße 47.75 KB
Installationsanzahl 46
Aktuelle Version 1.0.3
Letztes Update 2017-06-01
Veröffentlichungsdatum 2017-06-01
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Marat Dyatko
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/vectart/pixelate-chrome-extension
Hilfeseite URL https://github.com/vectart/pixelate-chrome-extension/issues
Unterstützte Sprachen 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"
        }
    ]
}