Devbox

A UI for local storage

Devboxคืออะไร?

Devbox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mehul Lakhanpal และคุณลักษณะหลักของมันคือ "A UI for local storage"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Devbox

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    }
}