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. 擴展基本資訊
| 名稱 | |
| ID | moifkpmfincoglpljkonmgnfaeonlgmo |
| 官方網址 | 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"
}
} | |