HTML Editor
This extension allows you to easily mock-up changes to your HTML
HTML Editor क्या है?
HTML Editor Thomas Povinelli द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to easily mock-up changes to your HTML"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में HTML Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension lets you easily edit HTML on your pages in real time so that you can quickly see what your changes will look like without having to change source, and reload the page. Simply press SHIFT + X to start the extension. You will see the current HTML element you are hovering over highlight in red. If you press ENTER a dialog will allow you to edit the HTML that currently exists in the element. (You can also click the element, but WARNING if you click a link, it will follow the link and ruin your progress!). By default, pressing ENTER or clicking an element will allow you to edit the `textContent` property. Hold SHIFT while pressing ENTER or while clicking an element to edit its `innerHTML` property. Simply press SHIFT + X or ESCAPE to stop the extension and go back to the normal webpage viewing mode
एक्सटेंशन की मूल जानकारी
नाम | HTML Editor |
ID | jdpnokacamibfikmngoeoiaadfhlhaea |
आधिकारिक URL | https://chromewebstore.google.com/detail/html-editor/jdpnokacamibfikmngoeoiaadfhlhaea |
विवरण | This extension allows you to easily mock-up changes to your HTML |
फ़ाइल का आकार | 18.23 KB |
स्थापना संख्या | 442 |
वर्तमान संस्करण | 0.1.0 |
अंतिम अपडेट | 2021-04-08 |
प्रकाशन तिथि | 2021-04-08 |
डेवलपर | Thomas Povinelli |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/elunico/HTML-Editor |
सहायता पृष्ठ URL | https://github.com/elunico/HTML-Editor |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HTML Editor", "version": "0.1.0", "manifest_version": 2, "description": "This extension allows you to easily mock-up changes to your HTML", "homepage_url": "http:\/\/github.com\/elunico", "icons": { "16": "icons\/HtmlEditor16.png", "48": "icons\/HtmlEditor48.png", "128": "icons\/HtmlEditor128.png" }, "default_locale": "en", "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |