SQL Formatter
Formats your SQL for easier reading, code review, and debugging.
Vad är SQL Formatter?
SQL Formatter är en Chrome-tillägg utvecklad av noah.yonack.cws, och dess huvudfunktion är "Formats your SQL for easier reading, code review, and debugging.".
Tilläggsskärmbilder
Ladda ner SQL Formatter-förlängningens CRX-fil
Ladda ner SQL Formatter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | SQL Formatter |
ID | cefnebgidjhmfaiadkgljilejmnhdcpe |
Officiell webbadress | https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe |
Beskrivning | Formats your SQL for easier reading, code review, and debugging. |
Filstorlek | 102 KB |
Antal Installationer | 160 |
Aktuell Version | 0.0.0.3 |
Senast Uppdaterad | 2021-03-30 |
Publiceringsdatum | 2021-03-13 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | noah.yonack.cws |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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": [] } |