DOM editor

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

DOM editorคืออะไร?

DOM editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pabloav และคุณลักษณะหลักของมันคือ "This extension allows you to cut/copy/paste DOM elements. Changes are not permanent"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DOM editor

ดาวน์โหลดไฟล์ส่วนขยาย DOM editor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}