IndexedDB Exporter

Export IndexedDB data to a JSON file.

IndexedDB Exporter란 무엇입니까?

IndexedDB Exporter은(는) Danijel Kozar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export IndexedDB data to a JSON file."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

IndexedDB Exporter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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": [
        "*:\/\/*\/*"
    ]
}