Manage LocalStorage extension allows you to export, import, localstorage from your browser.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Manage LocalStorage ",
"version": "1.0.0",
"description": "Manage LocalStorage extension allows you to export, import, localstorage from your browser.",
"manifest_version": 3,
"icons": {
"16": "images/localstorage_16x16.png",
"32": "images/localstorage_32x32.png",
"48": "images/localstorage_48x48.png",
"128": "images/localstorage_128x128.png"
},
"author": "Besnik Mahmuti",
"permissions": [
"scripting",
"activeTab",
"clipboardWrite"
],
"background": {
"service_worker": "/scripts/background.js"
},
"action": {
"default_popup": "index.html",
"default_title": "Manage LocalStorage"
},
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_scripts.js"
]
}
]
}