Pixelate

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

Vad är Pixelate?

Pixelate är en Chrome-tillägg utvecklad av Marat Dyatko, och dess huvudfunktion är "Reduce visual noise by making all tab icons to follow the same style.".

Tilläggsskärmbilder

screenshot

Ladda ner Pixelate-förlängningens CRX-fil

Ladda ner Pixelate-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Pixelate Pixelate
ID ploffbpabbckaipfbpkkjjgkoapfkccj
Officiell webbadress https://chromewebstore.google.com/detail/pixelate/ploffbpabbckaipfbpkkjjgkoapfkccj
Beskrivning Reduce visual noise by making all tab icons to follow the same style.
Filstorlek 47.75 KB
Antal Installationer 46
Aktuell Version 1.0.3
Senast Uppdaterad 2017-06-01
Publiceringsdatum 2017-06-01
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Marat Dyatko
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/vectart/pixelate-chrome-extension
Hjälpsida URL https://github.com/vectart/pixelate-chrome-extension/issues
Stödda Språk 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"
        }
    ]
}