Text Editor

A free, highly customizable text and code editor extension for your browser.

Text Editorคืออะไร?

Text Editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sevina และคุณลักษณะหลักของมันคือ "A free, highly customizable text and code editor extension for your browser."

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Text Editor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Text Editor is a full-featured text & code editor add-on for your browser.

This add-on has plenty of options to adjust and is built on top of the famous CodeMirror open-source JavaScript library (https://codemirror.net/). Once you open the add-on for the first time, you will see a sidebar at the left and an empty text editor at the right. The left sidebar includes file I/O buttons. For example, a button to open file(s) or settings. There is also a right sidebar that includes all the options for this app.

Note 1: This extension uses the new file system access API (https://web.dev/file-system-access/) to open and save files to disk. But, if your browser does not support this new API, it uses the - downloads - API instead to save files to disk in the default download folder (asks for downloads permission when opening the interface).

Note 2: Currently, Text Editor supports three key-maps for famous text editors (i.e. sublime). Moreover, it supports more than 100 coding languages (i.e. JavaScript, CSS, HTML, etc.)

If you have a feature request or found a bug to report, please fill the bug report form in the add-on's homepage (https://mybrowseraddon.com/text-editor.html).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Text Editor Text Editor
ID demheclfdlemkkpadenmajhjbdhbjjml
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/text-editor/demheclfdlemkkpadenmajhjbdhbjjml
คำอธิบาย A free, highly customizable text and code editor extension for your browser.
ขนาดไฟล์ 1.44 MB
จำนวนการติดตั้ง 28,163
เวอร์ชันปัจจุบัน 0.1.9
อัปเดตครั้งล่าสุด 2023-01-10
วันที่เผยแพร่ 2019-12-01
คะแนน 4.00/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา Sevina
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/text-editor.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/text-editor.html
URL หน้านโยบายความเป็นส่วนตัว https://mybrowseraddon.com/privacy-policy/developer/sevina.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.9",
    "name": "Text Editor",
    "manifest_version": 3,
    "offline_enabled": true,
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/text-editor.html",
    "description": "A free, highly customizable text and code editor extension for your browser.",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Text Editor",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}