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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

SQLite Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 SQLite Viewer
ID golagekponhmgfoofmlepfobdmhpajia
공식 URL 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": []
    }
}