Devbox
A UI for local storage
Qu'est-ce que Devbox ?
Devbox est une extension Chrome développée par Mehul Lakhanpal, et sa fonction principale est "A UI for local storage".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Devbox
Téléchargez les fichiers d'extension Devbox au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Devbox |
ID | moifkpmfincoglpljkonmgnfaeonlgmo |
URL Officiel | https://chromewebstore.google.com/detail/devbox/moifkpmfincoglpljkonmgnfaeonlgmo |
Description | A UI for local storage |
Taille du Fichier | 2.16 MB |
Nombre d'Installations | 166 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2022-07-13 |
Date de Publication | 2022-06-10 |
Évaluation | 3.50/5 Total 2 Évaluations |
Développeur | Mehul Lakhanpal |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |