Storage Manager

Storage Manager

An extension that manages the contents of LocalStorage and SessionStorage

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Storage Manager",
  "version": "0.1.0",
  "homepage_url": "https://mugi111.github.io/storage-manager/",
  "description": "An extension that manages the contents of LocalStorage and SessionStorage",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "downloads"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "storage manager"
  },
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}