SQLite Viewer

A tabular SQLite viewer and editor that supports opening of multiple databases

SQLite Viewer là gì?

SQLite Viewer là một tiện ích mở rộng Chrome được phát triển bởi balvin.perrie, và tính năng chính của nó là "A tabular SQLite viewer and editor that supports opening of multiple databases".

Ả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 SQLite Viewer

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

                        Features:
1. Opens multiple SQLite databases on a single tabular view
2. Opens local and remote SQLite databases
3. Creates SQLite databases on your browser memory
4. Download SQLite databases after edit
5. Works offline without any server interaction

Description:

This extension is meant to ease SQLite database browsing without using any native components. You can simply open a local or server-side database with one click. The extension displays the containing tables in the database and you can browse any table in multiple tabs. The extension loads the results that fit into the user screen hence you don't need to worry that the SQLite query returns huge tables. The data is fetched on demand when you scroll down. This extension supports keyboard shortcuts for almost all the actions. Please visit the FAQ page for more info.

You can use this extension to view an SQLite query or even create new databases or modify an existing database. You can alter and save the resulted binary database for later use or use with another application.                    

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

Tên SQLite Viewer SQLite Viewer
ID golagekponhmgfoofmlepfobdmhpajia
URL Chính Thức https://chromewebstore.google.com/detail/sqlite-viewer/golagekponhmgfoofmlepfobdmhpajia
Mô tả A tabular SQLite viewer and editor that supports opening of multiple databases
Kích Thước Tệp 1.02 MB
Số Lần Cài Đặt 10,378
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2022-04-27
Ngày Phát Hành 2020-02-17
Đánh Giá 3.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển balvin.perrie
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://add0n.com/sqlite-viewer.html
URL Trang Trợ Giúp https://add0n.com/sqlite-viewer.html
URL Trang Chính Sách Bảo Mật https://add0n.com/policies/balvin.perrie.txt
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.2.0",
    "name": "SQLite Viewer",
    "description": "A tabular SQLite viewer and editor that supports opening of multiple databases",
    "permissions": [
        "storage"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "offline_enabled": true,
    "homepage_url": "https:\/\/add0n.com\/sqlite-viewer.html",
    "icons": {
        "16": "data\/icons\/16.png",
        "19": "data\/icons\/19.png",
        "32": "data\/icons\/32.png",
        "38": "data\/icons\/38.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "action": [],
    "commands": {
        "_execute_action": []
    }
}