Devbox

A UI for local storage

Wat is Devbox?

Devbox is een Chrome-extensie ontwikkeld door Mehul Lakhanpal, en de belangrijkste functie is "A UI for local storage".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Devbox

Download Devbox-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Devbox Devbox
ID moifkpmfincoglpljkonmgnfaeonlgmo
Officiële URL https://chromewebstore.google.com/detail/devbox/moifkpmfincoglpljkonmgnfaeonlgmo
Beschrijving A UI for local storage
Bestandsgrootte 2.16 MB
Aantal Installaties 166
Huidige Versie 1.3
Laatst Bijgewerkt 2022-07-13
Publicatiedatum 2022-06-10
Beoordeling 3.50/5 Totaal 2 Beoordelingen
Ontwikkelaar Mehul Lakhanpal
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}