Clear Local Storage

This extension lets you clear local storage and then reloads the page

Clear Local Storage란 무엇입니까?

Clear Local Storage은(는) rimraf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension lets you clear local storage and then reloads the page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Clear Local Storage 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Press Alt + Shift + L or Cmd + Shift + L (Mac), to open the extension and then press Enter to clear local storage and reload the page! (Or click the button if u want :)

Tip: To change shortcut go to chrome://extensions/shortcuts in the address bar!

It's very useful when developing web applications where states are stored in local storage. I made this extension for myself because I couldn't find a good and simple one, so I thought why not release it for everyone to use! 

It clears local storage without clearing cookies! Very handy! 

Please let me know if something isn't working or if you have any features or suggestions!

Code on.

𐋉 = Rr = Rimraf                    

확장 프로그램 기본 정보

이름 Clear Local Storage Clear Local Storage
ID adilpdccjldjgnipbjmnlgljhlbhkifb
공식 URL https://chromewebstore.google.com/detail/clear-local-storage/adilpdccjldjgnipbjmnlgljhlbhkifb
설명 This extension lets you clear local storage and then reloads the page
파일 크기 38.31 KB
설치 횟수 2,712
현재 버전 0.0.2.1
최근 업데이트 2023-05-04
출시 날짜 2020-01-17
평점 4.45/5 총 11 개의 평점
개발자 rimraf
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Clear Local Storage",
    "version": "0.0.2.1",
    "short_name": "Clear LocalStorage",
    "description": "This extension lets you clear local storage and then reloads the page",
    "author": "Rimraf",
    "icons": {
        "128": "icon_128.png",
        "286": "icon_286.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+L",
                "windows": "Alt+Shift+L",
                "mac": "Command+Shift+L",
                "chromeos": "Alt+Shift+L",
                "linux": "Alt+Shift+L"
            },
            "description": "Open extension",
            "global": false
        }
    },
    "action": {
        "default_icon": "icon_286.png",
        "default_popup": "clear-ls.html",
        "default_title": "Clear Local Storage"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ]
}