UpSignOn

UpSignOn

UpSignOn automatically fills forms with data saved in your UpSignOn desktop app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "0.11.0",
  "name": "UpSignOn",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "128": "./logo-128.png"
  },
  "background": {
    "scripts": [
      "dist/backgroundScript.js"
    ]
  },
  "browser_action": {
    "default_popup": "statics/popup/popup.html"
  },
  "content_scripts": [
    {
      "css": [
        "statics/contentScript/content-popup.css"
      ],
      "js": [
        "dist/contentScript.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "permissions": [
    "storage",
    "https://*/*",
    "tabs",
    "activeTab",
    "identity",
    "nativeMessaging",
    "scripting"
  ],
  "web_accessible_resources": [
    "*.map"
  ],
  "browser_specific_settings": {
    "edge": {
      "browser_action_next_to_addressbar": true
    },
    "gecko": {
      "id": "[email protected]"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}