Colors Dev Panel

Colors, in your dev inspector

Colors Dev Panel क्या है?

Colors Dev Panel Roy Kolak द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Colors, in your dev inspector"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        The Color Panel you have been searching for all your life... is here.

• Get the inspected site's palette of colors
• Modify any site's palette in real-time
• Precise color step control for manipulation
• Lighten and darken colors
• Saturate and desaturate colors
• Blend colors to find that perfect shade
• Convert between Hex, RGB, and HSL
• Easily copy colors to the clipboard
• View recently selected colors
• Explorable color schemas...
     - Complementary 
     - Split complementary
     - Triadic
     - Tetradic
     - Analogous
     - Neutral

Oh and it's Open Source!
https://github.com/roykolak/colors-dev-panel                    

एक्सटेंशन की मूल जानकारी

नाम Colors Dev Panel Colors Dev Panel
ID bgmflgfbiohkjpmoglkmfadokpichgln
आधिकारिक URL https://chrome.google.com/webstore/detail/colors-dev-panel/bgmflgfbiohkjpmoglkmfadokpichgln
विवरण Colors, in your dev inspector
फ़ाइल का आकार 344 KB
स्थापना संख्या 134
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2014-03-31
प्रकाशन तिथि 2014-03-31
रेटिंग 3.40/5 कुल 5 रेटिंग्स
डेवलपर Roy Kolak
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Colors Dev Panel",
    "short_name": "Colors Panels",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "Colors, in your dev inspector",
    "minimum_chrome_version": "29",
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "images\/icons\/icon16.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "permissions": [
        "clipboardWrite",
        "clipboardRead",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/injected_colors.js"
            ]
        }
    ]
}