SQL Formatter
Formats your SQL for easier reading, code review, and debugging.
SQL Formatterとは何ですか?
SQL Formatterはnoah.yonack.cwsによって開発されたChromeの拡張機能で、その主な機能は「Formats your SQL for easier reading, code review, and debugging.」です。
拡張機能のスクリーンショット
SQL Formatter拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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": [] } |