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 |
电子邮箱 | [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": [] } |