Sqlite Reader Online

Quickly access, edit, and manage your SQLite database from within your browser!

Τι είναι το Sqlite Reader Online;

Το Sqlite Reader Online είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Steven Sanders, και η κύρια λειτουργία του είναι "Quickly access, edit, and manage your SQLite database from within your browser!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Sqlite Reader Online

Λήψη αρχείων επέκτασης Sqlite Reader Online σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        You may run any SQLite command you want (SQL and SQLite are quite different, yet they share a lot of features). This add-on is written in JavaScript, using the SQLite library compiled from C code with Emscripten. Emscripten is a source-to-source compiler that converts native C/C++ instructions to JavaScript.

To use this plugin, simply drag an SQLite file into the app's UI (top section) and you're good to go. The instructions will be displayed in the text area (middle section) of the UI once the SQLite has been completely loaded. Simply add/change the code, then click on the - Execute SQLite - button in the upper left corner (the green button). 

Please keep in mind that executing any command might take some time, depending on the size of your SQLite database. The conclusion is displayed in the result section (section III) of the app UI. You may also save the database by selecting - Save Database - at the top and hitting the button. In addition, there's a button to insert a "sample" SQLite code. Simply hit this option, then press the - Execute SQLite - button to see what happens.

The main disadvantage of this add-on is that it runs slower than the native SQLite application/library. However, since use of the plugin is much simpler than using the native SQLite application, it's a good choice for small databases. This add-on works best with a moderate database size.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Sqlite Reader Online Sqlite Reader Online
ID agieignknpjeeifhoiokelenkhheieea
Επίσημο URL https://chromewebstore.google.com/detail/sqlite-reader-online/agieignknpjeeifhoiokelenkhheieea
Περιγραφή Quickly access, edit, and manage your SQLite database from within your browser!
Μέγεθος Αρχείου 1.47 MB
Αριθμός Εγκαταστάσεων 126
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2022-05-29
Ημερομηνία Δημοσίευσης 2022-05-29
Αξιολόγηση 4.93/5 Συνολικά 29 Αξιολογήσεις
Προγραμματιστής Steven Sanders
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://worldaddons.com/sqlite-reader-online/
Διεύθυνση URL της Σελίδας Βοήθειας https://worldaddons.com/contact/
URL της Σελίδας Πολιτικής Απορρήτου https://worldaddons.com/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Sqlite Reader Online",
    "short_name": "sqlite-reader-online",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/worldaddons.com\/sqlite-reader-online\/",
    "description": "Quickly access, edit, and manage your SQLite database from within your browser!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Sqlite Reader Online",
        "default_icon": {
            "16": "source\/icons\/16.png",
            "32": "source\/icons\/32.png",
            "48": "source\/icons\/48.png",
            "64": "source\/icons\/64.png"
        }
    },
    "icons": {
        "16": "source\/icons\/16.png",
        "32": "source\/icons\/32.png",
        "48": "source\/icons\/48.png",
        "64": "source\/icons\/64.png",
        "128": "source\/icons\/128.png"
    }
}