Pixelate

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

Pixelateคืออะไร?

Pixelate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marat Dyatko และคุณลักษณะหลักของมันคือ "Reduce visual noise by making all tab icons to follow the same style."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pixelate

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
        }
    ]
}