SQL Viewer

View SQL files/content formatted in the browser

SQL Viewer là gì?

SQL Viewer là một tiện ích mở rộng Chrome được phát triển bởi Ravikiran Janardhana, và tính năng chính của nó là "View SQL files/content formatted in the browser".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng SQL Viewer

Tải xuống các tệp mở rộng SQL Viewer 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

                        SQL Viewer lets you view *.sql files inline within chrome instead of asking you to download the file.

Source: https://github.com/ravikiranj/sql-viewer

Changeset
=========
v1.0.2
======
* Changed default theme to DARCULA
* Modified selection operations to work on individual SQL statements
* Fixed wording around minify and prettify.
* Modified tip to also include Cmd+S for saving raw sql file

v1.0.1
======
* Added tip about saving raw SQL file

v1.0.0
======
* First working version                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SQL Viewer SQL Viewer
ID iejlefphljdlldbogebiknjdbgdmlodd
URL Chính Thức https://chromewebstore.google.com/detail/sql-viewer/iejlefphljdlldbogebiknjdbgdmlodd
Mô tả View SQL files/content formatted in the browser
Kích Thước Tệp 232 KB
Số Lần Cài Đặt 7,804
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 4.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Ravikiran Janardhana
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SQL Viewer",
    "short_name": "SQL Viewer",
    "manifest_version": 2,
    "version": "1.0.2",
    "description": "View SQL files\/content formatted in the browser",
    "icons": {
        "16": "icons\/sql-viewer-16x16.png",
        "32": "icons\/sql-viewer-32x32.png",
        "64": "icons\/sql-viewer-64x64.png",
        "128": "icons\/sql-viewer-128x128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        "*:\/\/*\/*.sql"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.sql"
            ],
            "css": [
                "css\/bootstrap\/bootstrap.min.css",
                "css\/bootstrap\/bootstrap-select.min.css",
                "css\/codemirror\/codemirror.css",
                "css\/codemirror\/dracula.css",
                "css\/sql-viewer-core.css"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/bootstrap.min.js",
                "js\/bootstrap-select.min.js",
                "js\/sql-formatter\/sql-formatter-1.2.2.min.js",
                "js\/codemirror\/lib\/codemirror.js",
                "js\/codemirror\/mode\/sql.js",
                "js\/codemirror\/addon\/formatting.js",
                "js\/content.js"
            ]
        }
    ]
}