Clear Local Storage

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

Clear Local Storage क्या है?

Clear Local Storage rimraf द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension lets you clear local storage and then reloads the page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Clear Local Storage एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}