WhatColor
The easiest way to identify colors on web pages.
WhatColorคืออะไร?
WhatColor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://milhen.ch และคุณลักษณะหลักของมันคือ "The easiest way to identify colors on web pages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WhatColor
ดาวน์โหลดไฟล์ส่วนขยาย WhatColor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This chrome extension has been written to demonstrate how to execute code within the current page after a chrome extension button is pressed, as discussed in my article; https://medium.com/p/f951315854e9 The basic premise is to parse all css stylesheet files that are linked to the current page and add a sidebar that lists all of the colors referenced within the stylesheets. # Caveats * For demo purposes only (supporting the atricle). * Inline colors are not displayed.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | WhatColor |
ID | begomjapoppkfcdcaindehabfglbfkcn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/whatcolor/begomjapoppkfcdcaindehabfglbfkcn |
คำอธิบาย | The easiest way to identify colors on web pages. |
ขนาดไฟล์ | 32.14 KB |
จำนวนการติดตั้ง | 1,380 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2022-09-08 |
วันที่เผยแพร่ | 2013-10-29 |
คะแนน | 2.00/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | https://milhen.ch |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://medium.com/p/f951315854e9 |
URL หน้าช่วยเหลือ | https://medium.com/p/f951315854e9 |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js", "asyncTracking.js" ] }, "browser_action": { "default_icon": "images\/dropper48.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*", "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "content.js", "content\/js\/plugins.js" ] } ], "description": "The easiest way to identify colors on web pages.", "icons": { "128": "images\/dropper128.png", "48": "images\/dropper48.png", "16": "images\/dropper16.png" }, "manifest_version": 2, "name": "WhatColor", "version": "1.0.2", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "content\/coordinator.js", "content\/*" ] } |