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ファイルをダウンロード

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

拡張機能の使用方法

                        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
Eメール [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"
    ]
}