SQL Formatter
Formats your SQL for easier reading, code review, and debugging.
Co to jest SQL Formatter?
SQL Formatter to rozszerzenie Chrome opracowane przez noah.yonack.cws, a jego główną funkcją jest „Formats your SQL for easier reading, code review, and debugging.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia SQL Formatter
Pobierz pliki rozszerzeń SQL Formatter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | SQL Formatter |
ID | cefnebgidjhmfaiadkgljilejmnhdcpe |
Oficjalny URL | https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe |
Opis | Formats your SQL for easier reading, code review, and debugging. |
Rozmiar pliku | 102 KB |
Liczba instalacji | 160 |
Aktualna Wersja | 0.0.0.3 |
Ostatnia Aktualizacja | 2021-03-30 |
Data Publikacji | 2021-03-13 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | noah.yonack.cws |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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": [] } |