SQLite Explorer

View in memory SQLite databases and tables

Wat is SQLite Explorer?

SQLite Explorer is een Chrome-extensie ontwikkeld door gaganjot07, en de belangrijkste functie is "View in memory SQLite databases and tables".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie SQLite Explorer

Download SQLite Explorer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam SQLite Explorer SQLite Explorer
ID lefjpjkijgpdfmapohighokjlhfndggl
Officiële URL https://chromewebstore.google.com/detail/sqlite-explorer/lefjpjkijgpdfmapohighokjlhfndggl
Beschrijving View in memory SQLite databases and tables
Bestandsgrootte 272 KB
Aantal Installaties 335
Huidige Versie 1.2.0
Laatst Bijgewerkt 2022-07-07
Publicatiedatum 2022-04-12
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar gaganjot07
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
}