DOM editor
This extension allows you to cut/copy/paste DOM elements. Changes are not permanent
Apa itu DOM editor?
DOM editor adalah ekstensi Chrome yang dikembangkan oleh pabloav, dan fitur utamanya adalah "This extension allows you to cut/copy/paste DOM elements. Changes are not permanent".
Unduh Berkas CRX Ekstensi DOM editor
Unduh file ekstensi DOM editor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Allows you to cut/copy/paste DOM elements click on the icon then click on the element while holding ctrl+c/v/x.
Informasi Dasar Ekstensi
Nama | ![]() |
ID | glijjkchlbfaflabolihcnlenpbkgiil |
URL Resmi | https://chrome.google.com/webstore/detail/dom-editor/glijjkchlbfaflabolihcnlenpbkgiil |
Deskripsi | This extension allows you to cut/copy/paste DOM elements. Changes are not permanent |
Ukuran File | 37.99 KB |
Jumlah Instalasi | 65 |
Versi Saat Ini | 0.1.3 |
Terakhir Diperbarui | 2015-12-15 |
Tanggal Publikasi | 2015-12-14 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | pabloav |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |