Advertisement |
What is the "SQLite Viewer" add-on and how can I use it?
SQLite is a fast and reliable database format, but it is a bit of pain when you what to browse a database. This extension is meant to ease the database access without the need to install a native application. This extension works offline. You can browse SQLite databases with a single click. To ease the opening process, the extension offers opening a table on the database by displaying the list of all available tables to the user and preselecting the first available table. Of course, the user can run a custom SQLite query on each tab and see the results by pressing the Enter key. This extension supports a keyboard shortcut for each action that it supports. The user can have multiple tabs for a single database to for instance display different tables on different tabs. You can use Ctrl/Command plus a number key to switch between tabs. To switch to the manager tab simply press Ctrl/Command + Digit1 keys. When running a custom SQLite command, the user should not be worried about the size of the resulting table since this extension only fetches the result that is viewable to the user. Once the end of the table is about to reach, the extension fetches the new results. This way you can open even large tables with a simple command like "SELECT * from TABLE_NAME".
recommended "Password Lock for WhatsApp Web" extension for Chrome, Edge, and Firefox browsers
This extension adds a password protection feature to your WhatsApp Web. It requires the user to enter a password to access the interface, and can also automatically lock the interface when the computer is inactive for extra security. Read more here.
What's new in this version?
Please check the Logs section.
What is the list of supported keyboard shortcuts?
Manager | |
---|---|
Open Local Database | Ctrl + O or Command + O |
Create Empty Database | Ctrl + D or Command + D |
Open Remote Database | Ctrl + L or Command + L |
Open Sample Database | Ctrl + B or Command + B |
New Tab for Active Database | Ctrl + E or Command + E |
Save Active Database | Ctrl + S or Command + S |
Table View | |
Edit Query | Ctrl + E or Cmmand + E |
Focus Table | Escape |
Does this extension use remote servers to parse the SQLite databases?
No this extension does not rely on any external resource at all. There is no remote service involved with the opening of databases. This extension uses the Emscripten compiled sql.js library to open SQLite databases in your bbrowser's memory using WebAssembly. When an SQLite Viewer tab is closed, the database is removed from your browser memory and there is no fingerprint after closing the tab. Also, there is no hidden script (aka background script) related to this extension. All the operations occur inside the browser tab to prevent any sort of memory leakage.
How can I create a sample table on a clean database?
First, create a sample table:
CREATE TABLE sample_table (id INTEGER, content TEXT)
Then insert some sample data into the table:
INSERT INTO sample_table (id, content) VALUES (1, "This is Line #1"), (2, "This is Line #2")
Now read the records from the table:
SELECT * from sample_table
Please keep reviews clean, avoid improper language, and do not post any personal information. Also, please consider sharing your valuable input on the official store.
Permission | Description |
---|---|
storage | to save internal preferences and user settings |