Pixelate

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

什麼是Pixelate?

Pixelate是由Marat Dyatko開發的Chrome擴展程式,該擴展的主要功能是“Reduce visual noise by making all tab icons to follow the same style.”。

擴展截圖

screenshot

下載Pixelate擴展crx文件

下載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
官方網址 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"
        }
    ]
}