any-color
Pick any pixel color from a web page
any-color क्या है?
any-color https://hankchiu.tw द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pick any pixel color from a web page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में any-color एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A chrome extension let you pick up any pixel color from a web page. - Inspired from chrome devtool's color picker. - Toggle the color inspector by Alt+Shift+A. - Turn off the color inspector by ESC. - Click and copy the color hex. ## Why? Most of the color picker extensions have these drawbacks: - Most of them are aimed at picking DOM colors. Can not pick image colors. - Not efficient when I only want to pick colors. ## How to use Install the extension and toggle the color inspector by Alt+Shift+A. That's it. ## How it works Mainly it uses [captureVisibleTab](https://developer.chrome.com/extensions/tabs#method-captureVisibleTab) API to the take the page screenshot. The image data is rasterized and pixel colors are ready to use. ## License [ Apache2 License ](LICENSE) © [hankchiu.tw](https://hankchiu.tw)
एक्सटेंशन की मूल जानकारी
नाम | any-color |
ID | cmehpadapglhhambdiafddpfjdngonba |
आधिकारिक URL | https://chromewebstore.google.com/detail/any-color/cmehpadapglhhambdiafddpfjdngonba |
विवरण | Pick any pixel color from a web page |
फ़ाइल का आकार | 227 KB |
स्थापना संख्या | 168 |
वर्तमान संस्करण | 0.3.0 |
अंतिम अपडेट | 2020-11-25 |
प्रकाशन तिथि | 2020-06-23 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://hankchiu.tw |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://any-color.vercel.app |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "any-color", "short_name": "AnyColor", "version": "0.3.0", "manifest_version": 2, "description": "Pick any pixel color from a web page", "homepage_url": "https:\/\/github.com\/hankchiutw\/any-color", "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "background": { "scripts": [ "main.js" ], "persistent": false }, "browser_action": { "default_title": "Click or press Alt+Shift+A to launch AnyColor", "name": "Click to launch AnyColor" }, "permissions": [ "activeTab" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+A", "mac": "Alt+Shift+A" }, "description": "Toggle AnyColor" } }, "web_accessible_resources": [ "assets\/*" ] } |