SQLite Explorer

View in memory SQLite databases and tables

SQLite Explorer là gì?

SQLite Explorer là một tiện ích mở rộng Chrome được phát triển bởi gaganjot07, và tính năng chính của nó là "View in memory SQLite databases and tables".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        Provides GUI to view Data and run queries on SQLite Web database instances used by any website for developer debugging and analytics purpose using Chrome Devtools.
SQLite Explorer only works with in-browser web SQLite database sql.js
https://github.com/sql-js/sql.js/

Steps
- Open Chrome Devtools window and go to the tab 'SQLite Explorer'
- Configure the connection using the Configuration dialog.
- Then click on the Connect button to load the list of tables in the database.
- Right click on any table to see more options (Open, Delete, etc)
- Alternatively click on the New Query button to execute your own query.

Update: Version 1.2.0
- New Context menu - 'Script as' opens a new tab with select query already filled in that can be tweaked if needed, thus saving some manual typing.
- Layout fixes                    

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

Tên SQLite Explorer SQLite Explorer
ID lefjpjkijgpdfmapohighokjlhfndggl
URL Chính Thức https://chromewebstore.google.com/detail/sqlite-explorer/lefjpjkijgpdfmapohighokjlhfndggl
Mô tả View in memory SQLite databases and tables
Kích Thước Tệp 272 KB
Số Lần Cài Đặt 335
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2022-07-07
Ngày Phát Hành 2022-04-12
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển gaganjot07
Email [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",
    "name": "SQLite Explorer",
    "description": "View in memory SQLite databases and tables",
    "version": "1.2.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/extension-icon16.png",
            "32": "\/images\/extension-icon32.png",
            "48": "\/images\/extension-icon48.png",
            "128": "\/images\/extension-icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/extension-icon16.png",
        "32": "\/images\/extension-icon32.png",
        "48": "\/images\/extension-icon48.png",
        "128": "\/images\/extension-icon128.png"
    },
    "devtools_page": "pages\/devtools.html"
}