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. 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |