SQL Formatter

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

Was ist SQL Formatter?

SQL Formatter ist eine Chrome-Erweiterung, die von noah.yonack.cws entwickelt wurde, und ihr Hauptmerkmal ist "Formats your SQL for easier reading, code review, and debugging.".

Erweiterungsscreenshots

screenshot

SQL Formatter-Erweiterungs-CRX-Datei herunterladen

Laden Sie SQL Formatter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name SQL Formatter SQL Formatter
ID cefnebgidjhmfaiadkgljilejmnhdcpe
Offizielle URL https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe
Beschreibung Formats your SQL for easier reading, code review, and debugging.
Dateigröße 102 KB
Installationsanzahl 160
Aktuelle Version 0.0.0.3
Letztes Update 2021-03-30
Veröffentlichungsdatum 2021-03-13
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler noah.yonack.cws
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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": []
}