Pixelate

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

Apa itu Pixelate?

Pixelate adalah ekstensi Chrome yang dikembangkan oleh Marat Dyatko, dan fitur utamanya adalah "Reduce visual noise by making all tab icons to follow the same style.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Pixelate

Unduh file ekstensi Pixelate dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Pixelate Pixelate
ID ploffbpabbckaipfbpkkjjgkoapfkccj
URL Resmi https://chromewebstore.google.com/detail/pixelate/ploffbpabbckaipfbpkkjjgkoapfkccj
Deskripsi Reduce visual noise by making all tab icons to follow the same style.
Ukuran File 47.75 KB
Jumlah Instalasi 46
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2017-06-01
Tanggal Publikasi 2017-06-01
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Marat Dyatko
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/vectart/pixelate-chrome-extension
URL Halaman Bantuan https://github.com/vectart/pixelate-chrome-extension/issues
Bahasa yang Didukung 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"
        }
    ]
}