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.
Основная информация о расширении
Название | ![]() |
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" ] } ] } |