Change Colors

Change pages styling according to the user's preferences.

Change Colorsคืออะไร?

Change Colors เป็นส่วนขยายของ Chrome ที่พัฒนาโดย clair และคุณลักษณะหลักของมันคือ "Change pages styling according to the user's preferences."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Change Colors ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        [IMPORTANT NOTICE]
This extension will be removed from the store in 2023, because the extension doesn't fulfill new regulation of chrome store.
I tried to fix the extension but with no luck.
Sorry for your inconvinience.
I would recommend "Midnight Lizard" as an alternative, which works and contains more functionality.

[for developper]
If you could migrate Manifest V2 to V3 with this extension, PR me in my repository below.
I will merge it and try to submit to the store.
https://github.com/srndpty/Change-Colors

---- original description below ----
This is alternative for Change Colors: https://chrome.google.com/webstore/detail/change-colors/jbmkekhehjedonbhoikhhkmlapalklgn
and this is from here: https://github.com/cuongtructran/Change-Colors
It works locally but it shows warning all you start chrome, which says "you are loading unpackaged extension". This is bothering.
I'll delete this one if the original author revised the extension to work, or the forker upload the same thing to the store.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Change Colors Change Colors
ID ageghplgcapnfpdhapeemolbmfccclke
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/change-colors/ageghplgcapnfpdhapeemolbmfccclke
คำอธิบาย Change pages styling according to the user's preferences.
ขนาดไฟล์ 222 KB
จำนวนการติดตั้ง 13,584
เวอร์ชันปัจจุบัน 2.244
อัปเดตครั้งล่าสุด 2022-08-23
วันที่เผยแพร่ 2018-08-14
คะแนน 4.04/5 รวมทั้งหมด 45 คะแนน
ผู้พัฒนา clair
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cuongtructran/Change-Colors
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Change Colors",
    "version": "2.244",
    "description": "Change pages styling according to the user's preferences.",
    "icons": {
        "16": "icons\/colors_icons.png",
        "32": "icons\/colors_icons.png",
        "48": "icons\/colors_icons.png",
        "128": "icons\/colors_icons.png"
    },
    "page_action": {
        "default_icon": "icons\/colors_icons.png",
        "default_title": "Change Colors",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background_page.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "convert.js"
            ],
            "all_frames": true
        }
    ],
    "minimum_chrome_version": "33.0",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ]
}