SQL Formatter

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

Cos'è SQL Formatter?

SQL Formatter è un'estensione di Chrome sviluppata da noah.yonack.cws, e la sua funzione principale è "Formats your SQL for easier reading, code review, and debugging.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SQL Formatter

Scarica i file di estensione SQL Formatter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome SQL Formatter SQL Formatter
ID cefnebgidjhmfaiadkgljilejmnhdcpe
URL Ufficiale https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe
Descrizione Formats your SQL for easier reading, code review, and debugging.
Dimensione del File 102 KB
Conteggio Installazioni 160
Versione Corrente 0.0.0.3
Ultimo Aggiornamento 2021-03-30
Data di Pubblicazione 2021-03-13
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore noah.yonack.cws
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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": []
}