Website Color Palette
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
Website Color Paletteคืออะไร?
Website Color Palette เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Forwards และคุณลักษณะหลักของมันคือ "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Website Color Palette
ดาวน์โหลดไฟล์ส่วนขยาย Website Color Palette ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl and more... - Copy the color instantly (on click). - No waiting times: 5 milliseconds. - No fake or random colors.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Website Color Palette |
ID | kegbegkdllkghhaibpbgoeakihgjbmka |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka |
คำอธิบาย | The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl… |
ขนาดไฟล์ | 48.12 KB |
จำนวนการติดตั้ง | 731 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2020-12-14 |
วันที่เผยแพร่ | 2020-12-13 |
คะแนน | 4.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Forwards |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://websitecolorpalette.com |
URL หน้าช่วยเหลือ | https://websitecolorpalette.com/contact |
URL หน้านโยบายความเป็นส่วนตัว | http://websitecolorpalette.com/privacy-policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Website Color Palette", "manifest_version": 2, "version": "0.1.0", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "chroma.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icons\/icon128.png", "default_popup": ".\/popup\/index.html", "default_title": "Website Color Palette" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |