Devbox
A UI for local storage
什么是Devbox?
Devbox是由Mehul Lakhanpal开发的Chrome扩展程序,该扩展的主要功能是“A UI for local storage”。
扩展截图
下载Devbox扩展crx文件
下载Devbox扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" } } |