Local Storage Manager

Manage your local storage variables in one single click. The best extension for devs.

什么是Local Storage Manager?

Local Storage Manager是由caraticar21开发的Chrome扩展程序,该扩展的主要功能是“Manage your local storage variables in one single click. The best extension for devs.”。

扩展截图

screenshot

下载Local Storage Manager扩展crx文件

下载Local Storage Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Copy, paste and edit your local storage variables in one single click                    

扩展基本信息

名称 Local Storage Manager Local Storage Manager
ID gblgaabfeickfogegnkagbehmbbnpbnp
官方URL https://chromewebstore.google.com/detail/local-storage-manager/gblgaabfeickfogegnkagbehmbbnpbnp
简介 Manage your local storage variables in one single click. The best extension for devs.
文件大小 109 KB
安装次数 322
当前版本 2.0
更新时间 2023-11-07
上架时间 2023-07-31
评分 5.00/5 共3次评分
开发者 caraticar21
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Local Storage Manager",
    "version": "2.0",
    "author": "CCAC and DDTG",
    "description": "Manage your local storage variables in one single click. The best extension for devs.",
    "icons": {
        "16": ".\/media\/favicon-16x16.png",
        "32": ".\/media\/favicon-32x32.png",
        "128": ".\/media\/favicon.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/scripts\/storage.js"
            ],
            "css": [
                ".\/popup\/popup.css"
            ]
        }
    ],
    "action": {
        "default_popup": ".\/popup\/popup.html",
        "default_title": "Local Storage Manager"
    },
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "*:\/\/*\/",
        ""
    ]
}