MotionKey

This is a website login information management service provided by Superbly.
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",
  "manifest_version": 2,
  "name": "MotionKey",
  "description": "This is a website login information management service provided by Superbly.",
  "version": "1.3.6",
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "browsingData",
    "http://*/*",
    "https://*/*",
    "https://svc.motionkey.net/"
  ],
  "icons": {
    "16": "motionkey_icon16.png",
    "32": "motionkey_icon32.png",
    "48": "motionkey_icon48.png",
    "128": "motionkey_icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "addBtn.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "addBtn.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://svc.motionkey.net; object-src 'self'"
}