SQLite Viewer
A tabular SQLite viewer and editor that supports opening of multiple databases
什麼是SQLite Viewer?
SQLite Viewer是由balvin.perrie開發的Chrome擴展程式,該擴展的主要功能是“A tabular SQLite viewer and editor that supports opening of multiple databases”。
擴展截圖
下載SQLite Viewer擴展crx文件
下載SQLite Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | SQLite Viewer |
ID | golagekponhmgfoofmlepfobdmhpajia |
官方網址 | https://chromewebstore.google.com/detail/sqlite-viewer/golagekponhmgfoofmlepfobdmhpajia |
簡介 | A tabular SQLite viewer and editor that supports opening of multiple databases |
檔案大小 | 1.02 MB |
安裝次數 | 10,378 |
目前版本 | 0.2.0 |
更新時間 | 2022-04-27 |
上架時間 | 2020-02-17 |
評分 | 3.40/5 共 5 次評分 |
開發者 | balvin.perrie |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://add0n.com/sqlite-viewer.html |
說明頁面URL | https://add0n.com/sqlite-viewer.html |
隱私政策頁面URL | https://add0n.com/policies/balvin.perrie.txt |
支援的語言 | 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": [] } } |