SQL Formatter

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

What is SQL Formatter?

SQL Formatter is a Chrome extension developed by noah.yonack.cws, and its main feature is "Formats your SQL for easier reading, code review, and debugging.".

Extension Screenshots

screenshot

Download SQL Formatter Extension CRX File

Download SQL Formatter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SQL Formatter SQL Formatter
ID cefnebgidjhmfaiadkgljilejmnhdcpe
Official URL https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe
Description Formats your SQL for easier reading, code review, and debugging.
File Size 102 KB
Installation Count 160
Current Version 0.0.0.3
Last Updated 2021-03-30
Publish Date 2021-03-13
Rating 5.00/5 Total 4 Ratings
Developer noah.yonack.cws
Email [email protected]
Payment Type free
Supported Languages 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": []
}