Devbox
A UI for local storage
ما هو Devbox؟
Devbox هو إضافة Chrome تم تطويرها بواسطة Mehul Lakhanpal، والميزة الرئيسية لها هي "A UI for local storage".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Devbox
قم بتنزيل ملفات الامتداد Devbox بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |