WhatColor

The easiest way to identify colors on web pages.

WhatColor क्या है?

WhatColor https://milhen.ch द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The easiest way to identify colors on web pages."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WhatColor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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\/*"
    ]
}