Devbox

A UI for local storage

Devbox là gì?

Devbox là một tiện ích mở rộng Chrome được phát triển bởi Mehul Lakhanpal, và tính năng chính của nó là "A UI for local storage".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Devbox

Tải xuống các tệp mở rộng Devbox dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Devbox Devbox
ID moifkpmfincoglpljkonmgnfaeonlgmo
URL Chính Thức https://chromewebstore.google.com/detail/devbox/moifkpmfincoglpljkonmgnfaeonlgmo
Mô tả A UI for local storage
Kích Thước Tệp 2.16 MB
Số Lần Cài Đặt 166
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2022-07-13
Ngày Phát Hành 2022-06-10
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Mehul Lakhanpal
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}