SQL Formatter
Formats your SQL for easier reading, code review, and debugging.
Co je SQL Formatter?
SQL Formatter je rozšíření Chrome vyvinuté noah.yonack.cws, a jeho hlavní funkcí je „Formats your SQL for easier reading, code review, and debugging.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření SQL Formatter
Stáhněte si soubory rozšíření SQL Formatter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | SQL Formatter |
ID | cefnebgidjhmfaiadkgljilejmnhdcpe |
Oficiální URL | https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe |
Popis | Formats your SQL for easier reading, code review, and debugging. |
Velikost souboru | 102 KB |
Počet instalací | 160 |
Aktuální Verze | 0.0.0.3 |
Poslední Aktualizace | 2021-03-30 |
Datum Vydání | 2021-03-13 |
Hodnocení | 5.00/5 Celkem 4 Hodnocení |
Vývojář | noah.yonack.cws |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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": [] } |