Localstorage copy

Localstorage copy

Copies localstorage items from one website to another, could be use for developers to login to applications on their dev machines…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Localstorage copy",
  "version": "1.0.4",
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/logo16.png",
    "32": "icons/logo32.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "getter.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "setter.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage"
  ]
}