DOM editor

This extension allows you to cut/copy/paste DOM elements. Changes are not permanent

DOM editor क्या है?

DOM editor pabloav द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to cut/copy/paste DOM elements. Changes are not permanent"।

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

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

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

                        Allows you to cut/copy/paste DOM elements 

click on the icon then click on the element while holding ctrl+c/v/x.                    

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

नाम DOM editor DOM editor
ID glijjkchlbfaflabolihcnlenpbkgiil
आधिकारिक URL https://chrome.google.com/webstore/detail/dom-editor/glijjkchlbfaflabolihcnlenpbkgiil
विवरण This extension allows you to cut/copy/paste DOM elements. Changes are not permanent
फ़ाइल का आकार 37.99 KB
स्थापना संख्या 65
वर्तमान संस्करण 0.1.3
अंतिम अपडेट 2015-12-15
प्रकाशन तिथि 2015-12-14
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर pabloav
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DOM editor",
    "description": "This extension allows you to cut\/copy\/paste DOM elements. Changes are not permanent",
    "version": "0.1.3",
    "browser_action": {
        "default_icon": "icon2.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "devtoolsCB_.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "yup.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "domeditor.css"
            ]
        }
    ]
}