Inspect

Inspect elements with css variables

Inspect क्या है?

Inspect peppertom द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inspect elements with css variables"।

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

screenshot

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

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

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

                        Inspect extension for getting potencial css variables and easily copy them to clipboard. 🎨🧐🔎

This extension mimics and enhances the built-in devtools inspector by adding the explored css variables to the inspector box too. It allowes developers to easily extract any css variables used for styling the inspected element. 

How to use it?

1. Activate the extension by clicking on it.

2. Inspect the document as if you were inspecting it with devtools' inspector.

3. Toggle 'inspect mode' and 'paused' mode by pressing 'alt + s' on your keyboard. ⌨️ 

4 . Copy the desired property's value by clicking on it 🖱️.

5. Remove inspector extension by clicking on it if you are done.                    

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

नाम Inspect Inspect
ID mfgcajjmbmalmniplbocamfkppkcnhdh
आधिकारिक URL https://chromewebstore.google.com/detail/inspect/mfgcajjmbmalmniplbocamfkppkcnhdh
विवरण Inspect elements with css variables
फ़ाइल का आकार 14.77 KB
स्थापना संख्या 52
वर्तमान संस्करण 1.0
अंतिम अपडेट 2022-03-02
प्रकाशन तिथि 2022-03-01
डेवलपर peppertom
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inspect",
    "description": "Inspect elements with css variables",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inspect\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Click to activate",
        "default_icon": {
            "16": "\/images\/inspect-icon-16.png",
            "24": "\/images\/inspect-icon-24.png",
            "32": "\/images\/inspect-icon-32.png",
            "48": "\/images\/inspect-icon-48.png",
            "96": "\/images\/inspect-icon-96.png",
            "128": "\/images\/inspect-icon-128.png"
        }
    },
    "icons": {
        "16": "\/images\/inspect-icon-16.png",
        "24": "\/images\/inspect-icon-24.png",
        "32": "\/images\/inspect-icon-32.png",
        "48": "\/images\/inspect-icon-48.png",
        "96": "\/images\/inspect-icon-96.png",
        "128": "\/images\/inspect-icon-128.png"
    }
}