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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}