SQLite Reader

Easily browse, edit and manage SQLite database inside your browser!

SQLite Reader란 무엇입니까?

SQLite Reader은(는) loora에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily browse, edit and manage SQLite database inside your browser!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        SQLite Reader is an extension that helps you easily browse, edit and render SQLite databases.

You can execute any SQLite command that you would like (SQL and SQLite have many differences but SQLite has most of the SQL standard). This add-on uses SQLite library which is compiled from C language to JavaScript with Emscripten compiler. Emscripten is a source-to-source compiler that can compile native C/C++ codes to JavaScript language.

To work with this add-on, just open the app UI and drag an SQLite file to the designated area in the app (top section). Once the SQLite is fully loaded, you will see the commands in the text area (middle section) within the UI. Simply add/edit the code and then click on the - Execute SQLite - button at the top left corner (the green button). Please note that executing any command may take some time depending on the SQLite database size. The result is rendered in the result section (section III) within the app UI. You can also save the database by pressing the - Save Database - button at the top. Moreover, there is also a button to insert a "sample" SQLite code. Simply press this button and then click on the - Execute SQLite - button to see the results.

Note 1: since this add-on runs SQLite commands within the browser, it runs slower than the native SQLite application/library. However, using it is very easy compared to the native SQLite application. Please note that, for a very large SQLite database, you still need the native application. This add-on is only suitable for a reasonable database size.

Note 2: this add-on is still in beta and may work as expected. Please report your bugs or any feature request via addon's homepage (https://mybrowseraddon.com/sql-reader.html), bug report form.                    

확장 프로그램 기본 정보

이름 SQLite Reader SQLite Reader
ID iefihcnlpcaplfbklakcbcbngfangjeg
공식 URL https://chromewebstore.google.com/detail/sqlite-reader/iefihcnlpcaplfbklakcbcbngfangjeg
설명 Easily browse, edit and manage SQLite database inside your browser!
파일 크기 1.45 MB
설치 횟수 4,467
현재 버전 0.1.3
최근 업데이트 2022-01-17
출시 날짜 2019-03-08
평점 2.88/5 총 8 개의 평점
개발자 loora
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://mybrowseraddon.com/sql-reader.html
도움말 페이지 URL https://mybrowseraddon.com/sql-reader.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.3",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "SQLite Reader",
    "short_name": "sql-reader",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/sql-reader.html",
    "description": "Easily browse, edit and manage SQLite database inside your browser!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "SQLite Reader",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}