SQL Formatter

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

Что такое SQL Formatter?

SQL Formatter - это расширение Chrome, разработанное noah.yonack.cws, и его основная функция - "Formats your SQL for easier reading, code review, and debugging.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения SQL Formatter

Скачайте файлы расширений SQL Formatter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название SQL Formatter SQL Formatter
ID cefnebgidjhmfaiadkgljilejmnhdcpe
Официальный URL https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe
Описание Formats your SQL for easier reading, code review, and debugging.
Размер файла 102 KB
Количество установок 160
Текущая Версия 0.0.0.3
Последнее Обновление 2021-03-30
Дата публикации 2021-03-13
Рейтинг 5.00/5 Всего 4 оценок
Разработчик noah.yonack.cws
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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": []
}