Clear Local Storage

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

Clear Local Storageคืออะไร?

Clear Local Storage เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rimraf และคุณลักษณะหลักของมันคือ "This extension lets you clear local storage and then reloads the page"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clear Local Storage

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}