SQL Formatter
Formats your SQL for easier reading, code review, and debugging.
Qu'est-ce que SQL Formatter ?
SQL Formatter est une extension Chrome développée par noah.yonack.cws, et sa fonction principale est "Formats your SQL for easier reading, code review, and debugging.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension SQL Formatter
Téléchargez les fichiers d'extension SQL Formatter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | SQL Formatter |
ID | cefnebgidjhmfaiadkgljilejmnhdcpe |
URL Officiel | https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe |
Description | Formats your SQL for easier reading, code review, and debugging. |
Taille du Fichier | 102 KB |
Nombre d'Installations | 160 |
Version Actuelle | 0.0.0.3 |
Dernière Mise à Jour | 2021-03-30 |
Date de Publication | 2021-03-13 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | noah.yonack.cws |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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": [] } |