Websql Plus

websql 功能增强,支持多查询标签、F8或Ctrl-R执行、记住数据库、简单查询、历史记录等

What is Websql Plus?

Websql Plus is a Chrome extension developed by greatcl, and its main feature is "websql 功能增强,支持多查询标签、F8或Ctrl-R执行、记住数据库、简单查询、历史记录等".

Extension Screenshots

screenshot
screenshot
screenshot

Download Websql Plus Extension CRX File

Download Websql Plus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        v3.0.2
fix bug
------------------------------------
v3.0.1
历史记录根据数据库和sql语句进行去重,首次运行自动清除历史重复记录。
------------------------------------

v2.0.5
修复历史sql字体实体化

------------------------------------
v2.0.4
取消收藏

------------------------------------
v2.0.3
延迟加载indexeddb,减少出错几率

------------------------------------
v2.0.2
修复细节

------------------------------------
v2.0.1 更新内容
记录查询历史记录
收藏历史记录
删除历史记录
过滤收藏的历史记录
快速执行历史的sql语句
修改表格错位的bug

------------------------------------
v1.0.2 更新内容
左侧滚动至默认选中数据库可见

------------------------------------
v1.0.1 更新内容
默认选中上次选择的数据库
左上角显示当前选中数据库
多查询标签页
F8 OR Ctrl-R 执行当前查询
双击表名,快速查询表结构
单击表名,插入表名到查询输入框
右击表名,简单查询表数据                    

Extension Basic Information

Name Websql Plus Websql Plus
ID hpepihodnkmmacjlnjodgchdflcmeafo
Official URL https://chrome.google.com/webstore/detail/websql-plus/hpepihodnkmmacjlnjodgchdflcmeafo
Description websql 功能增强,支持多查询标签、F8或Ctrl-R执行、记住数据库、简单查询、历史记录等
File Size 171 KB
Installation Count 93
Current Version 3.0.2
Last Updated 2015-09-21
Publish Date 2015-09-21
Rating 2.71/5 Total 7 Ratings
Developer greatcl
Payment Type free
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Websql Plus",
    "description": "websql \u529f\u80fd\u589e\u5f3a\uff0c\u652f\u6301\u591a\u67e5\u8be2\u6807\u7b7e\u3001F8\u6216Ctrl-R\u6267\u884c\u3001\u8bb0\u4f4f\u6570\u636e\u5e93\u3001\u7b80\u5355\u67e5\u8be2\u3001\u5386\u53f2\u8bb0\u5f55\u7b49",
    "version": "3.0.2",
    "icons": {
        "16": "imgs\/icon_16.png",
        "48": "imgs\/icon_48.png",
        "128": "imgs\/icon_128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/websql.game.pps.tv\/*"
            ],
            "js": [
                "js\/jquery-1.11.2.min.js",
                "codemirror\/codemirror.js",
                "js\/websql.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "activeTab",
        "tabs",
        "http:\/\/websql.game.pps.tv\/",
        "storage"
    ],
    "web_accessible_resources": [
        "codemirror\/codemirror.js",
        "codemirror\/codemirror.css",
        "imgs\/favicon.ico",
        "js\/injected.js",
        "js\/idb.js",
        "css\/style.css",
        "imgs\/history_128.png",
        "\/imgs\/no_star.png",
        "\/imgs\/star.png",
        "\/imgs\/delete.png",
        "\/imgs\/delete_active.png",
        "\/imgs\/run.png"
    ],
    "page_action": {
        "default_icon": {
            "19": "imgs\/tip_48.png",
            "38": "imgs\/tip_64.png"
        },
        "default_title": "websql plus",
        "default_popup": "popup.html"
    }
}