Local Storage

A browser extension for managing local storage.

Local Storageคืออะไร?

Local Storage เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shashika Virajh และคุณลักษณะหลักของมันคือ "A browser extension for managing local storage."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Local Storage ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Local Storage is a handy Chrome extension that offers a user-friendly interface to view, manage, and manipulate the items in your browser's local storage. Forget about delving into the Console tab every time you need to check on your local storage. This extension provides all the tools you need at your fingertips.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Local Storage Local Storage
ID nnlekldijoehomfgfciodmolohhfkfpm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/local-storage/nnlekldijoehomfgfciodmolohhfkfpm
คำอธิบาย A browser extension for managing local storage.
ขนาดไฟล์ 143 KB
จำนวนการติดตั้ง 631
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-09-30
วันที่เผยแพร่ 2023-09-30
คะแนน 5.00/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Shashika Virajh
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Local Storage",
    "version": "1.0",
    "description": "A browser extension for managing local storage.",
    "permissions": [
        "tabs"
    ],
    "action": {
        "default_popup": "extension\/popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "extension\/content.js"
            ]
        }
    ]
}