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”。
擴展截圖
下載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 |
ID | adilpdccjldjgnipbjmnlgljhlbhkifb |
官方網址 | 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" ] } |