IndexedDB Exporter

Export IndexedDB data to a JSON file.

Τι είναι το IndexedDB Exporter;

Το IndexedDB Exporter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Danijel Kozar, και η κύρια λειτουργία του είναι "Export IndexedDB data to a JSON file.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης IndexedDB Exporter

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

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

                        IndexedDB Exporter 2.0 is a handy Chrome extension that allows you to export data from IndexedDB databases. With this tool, you can easily extract and save your IndexedDB data to a JSON file for further analysis or backup purposes. Take control of your IndexedDB data!

Key Features:
* Export data from IndexedDB databases in JSON format
* Simple and intuitive interface
* Works with any website that uses IndexedDB
* Quick and easy data extraction
* No technical knowledge required

How to Use:
1. Install the extension from the Chrome Store.
2. Open any webpage that uses IndexedDB.
3. Click on the IndexedDB Exporter icon in your browser toolbar.
4. Select the desired database from the dropdown menu.
5. Click the "Export" button to save the data as a JSON file.

Whether you're a developer who wants to access and analyze IndexedDB data or a user who wants to back up important data stored in IndexedDB, this extension makes the process effortless. 

Note: IndexedDB Exporter does not modify or delete any data within the databases. It is purely for extracting and exporting data in a user-friendly format. We appreciate your understanding and patience as we continue to improve and update the extension. - For Developers, By Developers.                    

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

Όνομα IndexedDB Exporter IndexedDB Exporter
ID kngligbmoipnmljnpphhocajldjplgcj
Επίσημο URL https://chromewebstore.google.com/detail/indexeddb-exporter/kngligbmoipnmljnpphhocajldjplgcj
Περιγραφή Export IndexedDB data to a JSON file.
Μέγεθος Αρχείου 287 KB
Αριθμός Εγκαταστάσεων 1,565
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2023-05-16
Ημερομηνία Δημοσίευσης 2023-04-20
Αξιολόγηση 4.25/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Danijel Kozar
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "IndexedDB Exporter",
    "version": "2.0",
    "description": "Export IndexedDB data to a JSON file.",
    "permissions": [
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}