SQL Formatter
Formats your SQL for easier reading, code review, and debugging.
SQL Formatter là gì?
SQL Formatter là một tiện ích mở rộng Chrome được phát triển bởi noah.yonack.cws, và tính năng chính của nó là "Formats your SQL for easier reading, code review, and debugging.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SQL Formatter
Tải xuống các tệp mở rộng SQL Formatter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SQL Formatter |
ID | cefnebgidjhmfaiadkgljilejmnhdcpe |
URL Chính Thức | https://chromewebstore.google.com/detail/sql-formatter/cefnebgidjhmfaiadkgljilejmnhdcpe |
Mô tả | Formats your SQL for easier reading, code review, and debugging. |
Kích Thước Tệp | 102 KB |
Số Lần Cài Đặt | 160 |
Phiên Bản Hiện Tại | 0.0.0.3 |
Cập Nhật Lần Cuối | 2021-03-30 |
Ngày Phát Hành | 2021-03-13 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | noah.yonack.cws |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } |