Storage Editor

Editor for Local Storage and Session Storage.

Qu'est-ce que Storage Editor ?

Storage Editor est une extension Chrome développée par https://hancel.org, et sa fonction principale est "Editor for Local Storage and Session Storage.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Storage Editor

Téléchargez les fichiers d'extension Storage Editor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        You can use it to edit your website local storage and session storage.

✨ Feature
1. 🙈 Preview Local Storage and Session Storage Data as a tree.
2. ✏️ Edit, Add, Remove or Clear Storage Data.
3. 🔌 Add a New Node or Data to Object or Array.
4. 🔍 Search Value or Key in Storage Data Tree.

--------

✨ 这个扩展可以:
1. 🙈 解析查看 LocalStorage 或 SessionStorage 的数据,用树状结构呈现。
2. ✏️ 编辑,添加,移除或完全清除 Storage 的数据。
3. 🔌 可以给 Object 或 Array 数据类型添加新的节点或数据。
4. 🔍 可以搜索整个 Storage 的数据。                    

Informations de Base sur l'Extension

Nom Storage Editor Storage Editor
ID lpmmcjhefcghagdhnpbodfdamfmlicfn
URL Officiel https://chromewebstore.google.com/detail/storage-editor/lpmmcjhefcghagdhnpbodfdamfmlicfn
Description Editor for Local Storage and Session Storage.
Taille du Fichier 802 KB
Nombre d'Installations 694
Version Actuelle 1.0.2
Dernière Mise à Jour 2024-01-31
Date de Publication 2023-02-11
Évaluation 3.67/5 Total 3 Évaluations
Développeur https://hancel.org
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/imlinhanchao/crx_storage_editor
URL de la Page d'Aide https://github.com/imlinhanchao/crx_storage_editor/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Storage Editor",
    "version": "1.0.2",
    "action": {
        "default_popup": "src\/panel\/index.html#\/popup"
    },
    "description": "Editor for Local Storage and Session Storage.",
    "icons": {
        "16": "public\/logo.png",
        "48": "public\/logo.png",
        "128": "public\/logo.png"
    },
    "author": "Hancel.Lin",
    "homepage_url": "https:\/\/github.com\/imlinhanchao\/crx_storage_editor",
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/content-script-loader.index.ts.c957594d.5c55b11c.js"
            ],
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "devtools_page": "src\/devtools\/index.html",
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "src\/content-script\/index.ts",
                "public\/logo_128.png"
            ],
            "use_dynamic_url": false
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "assets\/index.ts.c957594d.js"
            ],
            "use_dynamic_url": true
        }
    ]
}