SQL Formatter

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

Wat is SQL Formatter?

SQL Formatter is een Chrome-extensie ontwikkeld door noah.yonack.cws, en de belangrijkste functie is "Formats your SQL for easier reading, code review, and debugging.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SQL Formatter

Download SQL Formatter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam SQL Formatter SQL Formatter
ID cefnebgidjhmfaiadkgljilejmnhdcpe
Officiële URL https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe
Beschrijving Formats your SQL for easier reading, code review, and debugging.
Bestandsgrootte 102 KB
Aantal Installaties 160
Huidige Versie 0.0.0.3
Laatst Bijgewerkt 2021-03-30
Publicatiedatum 2021-03-13
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar noah.yonack.cws
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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": []
}