Copy DOM Content
This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.
Что такое Copy DOM Content?
Copy DOM Content - это расширение Chrome, разработанное QoSMicro.com, и его основная функция - "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.".
Снимки экрана расширения
Скачать файл CRX расширения Copy DOM Content
Скачайте файлы расширений Copy DOM Content в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements. Anfound will be converted to elements with the class "original_iframe" as long as they are from the same domain.Основная информация о расширении
Название Copy DOM Content ID dmdbhcacalljmfmilnhmnhihdfoamdap Официальный URL https://chromewebstore.google.com/detail/copy-dom-content/dmdbhcacalljmfmilnhmnhihdfoamdap Описание This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements. Размер файла 13.8 KB Количество установок 803 Текущая Версия 1.1 Последнее Обновление 2016-04-24 Дата публикации 2016-04-24 Рейтинг 5.00/5 Всего 2 оценок Разработчик QoSMicro.com Тип оплаты free Поддерживаемые языки en-US manifest.json { "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Jose Manuel Sanchez", "homepage_url": "http:\/\/qosmicro.com\/", "name": "Copy DOM Content", "short_name": "Copy DOM", "description": "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.", "version": "1.1", "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_popup": "index.html", "default_title": "Copy DOM Content" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }