ColorfulPWA

This extension allows you to choose web application titlebar color.

ColorfulPWAคืออะไร?

ColorfulPWA เป็นส่วนขยายของ Chrome ที่พัฒนาโดย antoinel12.com และคุณลักษณะหลักของมันคือ "This extension allows you to choose web application titlebar color."

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

screenshot
screenshot
screenshot

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

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

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

                        This extension allows you to choose web application titlebar color.

***This extension requires that you create shortcut as an app (in single window) for the website you are intending to change the color.*** 
See https://support.google.com/chrome_webstore/answer/3060053?hl=en for more details.

It is especially useful web the web developper did not specified the color for his website and when the color inferred by Chrome is ugly.

You can also use it to easily distinguish windows when you have lots of them opened or when you want to quickly discriminate the current environment (DEV, TEST or PRODUCTION) you are working on.

No data is sent to a webserver, all informations are stored locally on your device.

It is licensed under AGPL-3.0. More details and source code are available on extension's page on GitHub.

For support please open a bug on GitHub.                    

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

ชื่อ ColorfulPWA ColorfulPWA
ID kecpjkejogdfaibpnfeomdiodibnojll
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/colorfulpwa/kecpjkejogdfaibpnfeomdiodibnojll
คำอธิบาย This extension allows you to choose web application titlebar color.
ขนาดไฟล์ 135 KB
จำนวนการติดตั้ง 618
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-06-09
วันที่เผยแพร่ 2020-06-08
คะแนน 4.82/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา antoinel12.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/antoinel12/ColorfulPWA
URL หน้าช่วยเหลือ https://github.com/antoinel12/ColorfulPWA/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ColorfulPWA",
    "description": "This extension allows you to choose web application titlebar color.",
    "version": "1.0.0",
    "author": "antoinel12",
    "homepage_url": "https:\/\/github.com\/antoinel12\/ColorfulPWA",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "run_at": "document_end"
        }
    ]
}