DOM editor
This extension allows you to cut/copy/paste DOM elements. Changes are not permanent
What is DOM editor?
DOM editor is a Chrome extension developed by pabloav, and its main feature is "This extension allows you to cut/copy/paste DOM elements. Changes are not permanent".
Download DOM editor Extension CRX File
Download DOM editor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Allows you to cut/copy/paste DOM elements click on the icon then click on the element while holding ctrl+c/v/x.
Extension Basic Information
Name | ![]() |
ID | glijjkchlbfaflabolihcnlenpbkgiil |
Official URL | https://chrome.google.com/webstore/detail/dom-editor/glijjkchlbfaflabolihcnlenpbkgiil |
Description | This extension allows you to cut/copy/paste DOM elements. Changes are not permanent |
File Size | 37.99 KB |
Installation Count | 65 |
Current Version | 0.1.3 |
Last Updated | 2015-12-15 |
Publish Date | 2015-12-14 |
Rating | 5.00/5 Total 1 Ratings |
Developer | pabloav |
Payment Type | free |
Supported Languages | 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" ] } ] } |