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"입니다.

확장 프로그램 스크린샷

screenshot

HTML Editor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
            ]
        }
    ]
}