Devbox

A UI for local storage

Devbox क्या है?

Devbox Mehul Lakhanpal द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A UI for local storage"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Devbox एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Devbox Devbox
ID moifkpmfincoglpljkonmgnfaeonlgmo
आधिकारिक URL https://chromewebstore.google.com/detail/devbox/moifkpmfincoglpljkonmgnfaeonlgmo
विवरण A UI for local storage
फ़ाइल का आकार 2.16 MB
स्थापना संख्या 166
वर्तमान संस्करण 1.3
अंतिम अपडेट 2022-07-13
प्रकाशन तिथि 2022-06-10
रेटिंग 3.50/5 कुल 2 रेटिंग्स
डेवलपर Mehul Lakhanpal
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}