DOM editor

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

DOM editorとは何ですか?

DOM editorはpabloavによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to cut/copy/paste DOM elements. Changes are not permanent」です。

DOM editor拡張機能のCRXファイルをダウンロード

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