DOM editor
This extension allows you to cut/copy/paste DOM elements. Changes are not permanent
Co to jest DOM editor?
DOM editor to rozszerzenie Chrome opracowane przez pabloav, a jego główną funkcją jest „This extension allows you to cut/copy/paste DOM elements. Changes are not permanent”.
Pobierz plik CRX rozszerzenia DOM editor
Pobierz pliki rozszerzeń DOM editor 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
Allows you to cut/copy/paste DOM elements click on the icon then click on the element while holding ctrl+c/v/x.
Podstawowe informacje o rozszerzeniu
Nazwa | ![]() |
ID | glijjkchlbfaflabolihcnlenpbkgiil |
Oficjalny URL | https://chrome.google.com/webstore/detail/dom-editor/glijjkchlbfaflabolihcnlenpbkgiil |
Opis | This extension allows you to cut/copy/paste DOM elements. Changes are not permanent |
Rozmiar pliku | 37.99 KB |
Liczba instalacji | 65 |
Aktualna Wersja | 0.1.3 |
Ostatnia Aktualizacja | 2015-12-15 |
Data Publikacji | 2015-12-14 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | pabloav |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |