Devbox
A UI for local storage
What is Devbox?
Devbox is a Chrome extension developed by Mehul Lakhanpal, and its main feature is "A UI for local storage".
Extension Screenshots
Download Devbox Extension CRX File
Download Devbox extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Devbox |
ID | moifkpmfincoglpljkonmgnfaeonlgmo |
Official URL | https://chromewebstore.google.com/detail/devbox/moifkpmfincoglpljkonmgnfaeonlgmo |
Description | A UI for local storage |
File Size | 2.16 MB |
Installation Count | 166 |
Current Version | 1.3 |
Last Updated | 2022-07-13 |
Publish Date | 2022-06-10 |
Rating | 3.50/5 Total 2 Ratings |
Developer | Mehul Lakhanpal |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |