Local Storage

A browser extension for managing local storage.

什麼是Local Storage?

Local Storage是由Shashika Virajh開發的Chrome擴展程式,該擴展的主要功能是“A browser extension for managing local storage.”。

擴展截圖

screenshot
screenshot
screenshot

下載Local Storage擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}