SQL Viewer

View SQL files/content formatted in the browser

什么是SQL Viewer?

SQL Viewer是由Ravikiran Janardhana开发的Chrome扩展程序,该扩展的主要功能是“View SQL files/content formatted in the browser”。

扩展截图

screenshot
screenshot

下载SQL Viewer扩展crx文件

下载SQL Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 SQL Viewer SQL Viewer
ID iejlefphljdlldbogebiknjdbgdmlodd
官方URL https://chromewebstore.google.com/detail/sql-viewer/iejlefphljdlldbogebiknjdbgdmlodd
简介 View SQL files/content formatted in the browser
文件大小 232 KB
安装次数 7,804
当前版本 1.0.2
更新时间 2019-03-08
上架时间 2019-03-08
评分 4.50/5 共4次评分
开发者 Ravikiran Janardhana
付费类型 free
支持的语言 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"
            ]
        }
    ]
}