HTML Editor

This extension allows you to easily mock-up changes to your HTML

HTML Editorคืออะไร?

HTML Editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Thomas Povinelli และคุณลักษณะหลักของมันคือ "This extension allows you to easily mock-up changes to your HTML"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HTML Editor

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
            ]
        }
    ]
}