Copy DOM Content
This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.
Co to jest Copy DOM Content?
Copy DOM Content to rozszerzenie Chrome opracowane przez QoSMicro.com, a jego główną funkcją jest „This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Copy DOM Content
Pobierz pliki rozszerzeń Copy DOM Content w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.Podstawowe informacje o rozszerzeniu
Nazwa Copy DOM Content ID dmdbhcacalljmfmilnhmnhihdfoamdap Oficjalny URL https://chromewebstore.google.com/detail/copy-dom-content/dmdbhcacalljmfmilnhmnhihdfoamdap Opis This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements. Rozmiar pliku 13.8 KB Liczba instalacji 803 Aktualna Wersja 1.1 Ostatnia Aktualizacja 2016-04-24 Data Publikacji 2016-04-24 Ocena 5.00/5 Łącznie 2 Oceny Deweloper QoSMicro.com Typ Płatności free Obsługiwane Języki 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" } }