Devbox

A UI for local storage

Apa itu Devbox?

Devbox adalah ekstensi Chrome yang dikembangkan oleh Mehul Lakhanpal, dan fitur utamanya adalah "A UI for local storage".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Devbox

Unduh file ekstensi Devbox dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        A chrome extension which shows data from local storage for easy viewing & copy-paste.

While development, there is a need to get fields from local storage (ex., userId, token, etc). This chrome extension helps create entries that read data from storage and show it in a small window at the bottom left corner of the development window.

Features:
- Create an entry by entering a local storage key name, path (if the key’s value is an object) & a label for reference.
- Clicking value copies the content to the clipboard.                    

Informasi Dasar Ekstensi

Nama Devbox Devbox
ID moifkpmfincoglpljkonmgnfaeonlgmo
URL Resmi https://chromewebstore.google.com/detail/devbox/moifkpmfincoglpljkonmgnfaeonlgmo
Deskripsi A UI for local storage
Ukuran File 2.16 MB
Jumlah Instalasi 166
Versi Saat Ini 1.3
Terakhir Diperbarui 2022-07-13
Tanggal Publikasi 2022-06-10
Penilaian 3.50/5 Total 2 Penilaian
Pengembang Mehul Lakhanpal
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Devbox",
    "version": "1.3",
    "description": "A UI for local storage",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost\/*"
            ],
            "js": [
                ".\/build\/script.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    }
}