Devbox

A UI for local storage

Cos'è Devbox?

Devbox è un'estensione di Chrome sviluppata da Mehul Lakhanpal, e la sua funzione principale è "A UI for local storage".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Devbox

Scarica i file di estensione Devbox in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Devbox Devbox
ID moifkpmfincoglpljkonmgnfaeonlgmo
URL Ufficiale https://chromewebstore.google.com/detail/devbox/moifkpmfincoglpljkonmgnfaeonlgmo
Descrizione A UI for local storage
Dimensione del File 2.16 MB
Conteggio Installazioni 166
Versione Corrente 1.3
Ultimo Aggiornamento 2022-07-13
Data di Pubblicazione 2022-06-10
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore Mehul Lakhanpal
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}