Devbox
A UI for local storage
Vad är Devbox?
Devbox är en Chrome-tillägg utvecklad av Mehul Lakhanpal, och dess huvudfunktion är "A UI for local storage".
Tilläggsskärmbilder
Ladda ner Devbox-förlängningens CRX-fil
Ladda ner Devbox-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | moifkpmfincoglpljkonmgnfaeonlgmo |
| Officiell webbadress | https://chromewebstore.google.com/detail/devbox/moifkpmfincoglpljkonmgnfaeonlgmo |
| Beskrivning | A UI for local storage |
| Filstorlek | 2.16 MB |
| Antal Installationer | 166 |
| Aktuell Version | 1.3 |
| Senast Uppdaterad | 2022-07-13 |
| Publiceringsdatum | 2022-06-10 |
| Betyg | 3.50/5 Totalt 2 Betyg |
| Utvecklare | Mehul Lakhanpal |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |