SQL Formatter

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

O que é SQL Formatter?

SQL Formatter é uma extensão do Chrome desenvolvida por noah.yonack.cws, e sua principal característica é "Formats your SQL for easier reading, code review, and debugging.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão SQL Formatter

Baixe arquivos de extensão SQL Formatter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome SQL Formatter SQL Formatter
ID cefnebgidjhmfaiadkgljilejmnhdcpe
URL Oficial https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe
Descrição Formats your SQL for easier reading, code review, and debugging.
Tamanho do Arquivo 102 KB
Contagem de Instalações 160
Versão Atual 0.0.0.3
Última Atualização 2021-03-30
Data de Publicação 2021-03-13
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor noah.yonack.cws
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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": []
}