SQL Formatter

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

什麼是SQL Formatter?

SQL Formatter是由noah.yonack.cws開發的Chrome擴展程式,該擴展的主要功能是“Formats your SQL for easier reading, code review, and debugging.”。

擴展截圖

screenshot

下載SQL Formatter擴展crx文件

下載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
官方網址 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": []
}