LocalStorage Manager

Add, edit, remove, export and import local storage and session storage data

LocalStorage Managerとは何ですか?

LocalStorage Managerはmichailchaban198812によって開発されたChromeの拡張機能で、その主な機能は「Add, edit, remove, export and import local storage and session storage data」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

LocalStorage Manager拡張機能のCRXファイルをダウンロード

LocalStorage Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Source code and bug tracker are available at https://github.com/gabrielbarros/localstorage-manager
———————————————————

Add, edit, remove, export and import local storage and session storage data.

----------------------------------------

According to Wikipedia, web storage offers two different storage areas — local storage and session storage — which differ in scope and lifetime. Data placed in local storage is per origin (the combination of protocol, hostname, and port number as defined in the same-origin policy) (the data is available to all scripts loaded from pages from the same origin that previously stored the data) and persists after the browser is closed. Session storage is per-origin-per-window-or-tab and is limited to the lifetime of the window. Session storage is intended to allow separate instances of the same web application to run in different windows without interfering with each other, a use case that's not well supported by cookies.                    

拡張機能の基本情報

名前 LocalStorage Manager LocalStorage Manager
ID fkhoimdhngkiicbjobkinobjkoefhkap
公式URL https://chrome.google.com/webstore/detail/fkhoimdhngkiicbjobkinobjkoefhkap
説明 Add, edit, remove, export and import local storage and session storage data
ファイルサイズ 44.12 KB
インストール数 27,093
現在のバージョン 2.6
最終更新日 2023-01-02
公開日 2018-04-06
評価 3.95/5 合計 38 レビュー
開発者 michailchaban198812
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/gabrielbarros/localstorage-manager
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "LocalStorage Manager",
    "version": "2.6",
    "description": "Add, edit, remove, export and import local storage and session storage data",
    "icons": {
        "16": "img\/16x16.png",
        "48": "img\/48x48.png",
        "128": "img\/128x128.png"
    },
    "offline_enabled": true,
    "action": {
        "default_icon": "img\/128x128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ]
}