SQL Formatter

Formats your SQL for easier reading, code review, and debugging.

SQL Formatterคืออะไร?

SQL Formatter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย noah.yonack.cws และคุณลักษณะหลักของมันคือ "Formats your SQL for easier reading, code review, and debugging."

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

screenshot

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

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

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

                        Formats your SQL for easier reading, code review, and debugging. To use it, highlight a block of SQL on a webpage (such as inside a text field). Then click on the Chrome Extension icon in the URL bar (make sure it's pinned). For most websites, the newly formatted SQL will be written to your clipboard, and you can paste it from there! For websites that use the CodeMirror front-end text editor (Snowflake, Sisense for Cloud, and others), the SQL will be auto-pasted in the text-editor without requiring you to paste it.                    

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

ชื่อ SQL Formatter SQL Formatter
ID cefnebgidjhmfaiadkgljilejmnhdcpe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe
คำอธิบาย Formats your SQL for easier reading, code review, and debugging.
ขนาดไฟล์ 102 KB
จำนวนการติดตั้ง 160
เวอร์ชันปัจจุบัน 0.0.0.3
อัปเดตครั้งล่าสุด 2021-03-30
วันที่เผยแพร่ 2021-03-13
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา noah.yonack.cws
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SQL Formatter",
    "description": "Formats your SQL for easier reading, code review, and debugging.",
    "version": "0.0.0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js",
            "sql-formatter.js",
            "formatter.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "codeMirrorIO.js"
    ],
    "browser_action": []
}