WhatColor
The easiest way to identify colors on web pages.
WhatColor là gì?
WhatColor là một tiện ích mở rộng Chrome được phát triển bởi https://milhen.ch, và tính năng chính của nó là "The easiest way to identify colors on web pages.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng WhatColor
Tải xuống các tệp mở rộng WhatColor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WhatColor |
ID | begomjapoppkfcdcaindehabfglbfkcn |
URL Chính Thức | https://chromewebstore.google.com/detail/whatcolor/begomjapoppkfcdcaindehabfglbfkcn |
Mô tả | The easiest way to identify colors on web pages. |
Kích Thước Tệp | 32.14 KB |
Số Lần Cài Đặt | 1,380 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2022-09-08 |
Ngày Phát Hành | 2013-10-29 |
Đánh Giá | 2.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | https://milhen.ch |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://medium.com/p/f951315854e9 |
URL Trang Trợ Giúp | https://medium.com/p/f951315854e9 |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |