DOM editor
This extension allows you to cut/copy/paste DOM elements. Changes are not permanent
Vad är DOM editor?
DOM editor är en Chrome-tillägg utvecklad av pabloav, och dess huvudfunktion är "This extension allows you to cut/copy/paste DOM elements. Changes are not permanent".
Ladda ner DOM editor-förlängningens CRX-fil
Ladda ner DOM editor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Allows you to cut/copy/paste DOM elements
click on the icon then click on the element while holding ctrl+c/v/x. Grundläggande Information om Tillägg
| Namn | |
| ID | glijjkchlbfaflabolihcnlenpbkgiil |
| Officiell webbadress | https://chrome.google.com/webstore/detail/dom-editor/glijjkchlbfaflabolihcnlenpbkgiil |
| Beskrivning | This extension allows you to cut/copy/paste DOM elements. Changes are not permanent |
| Filstorlek | 37.99 KB |
| Antal Installationer | 65 |
| Aktuell Version | 0.1.3 |
| Senast Uppdaterad | 2015-12-15 |
| Publiceringsdatum | 2015-12-14 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | pabloav |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |