HTML Editor
This extension allows you to easily mock-up changes to your HTML
什么是HTML Editor?
HTML Editor是由Thomas Povinelli开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to easily mock-up changes to your HTML”。
扩展截图
下载HTML Editor扩展crx文件
下载HTML Editor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } ] } |