Sticky Password manager & safe

Sticky Password manager & safe

Web form and password filling companion for Sticky Password manager & safe

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_title": "Sticky Password",
    "default_popup": "spPopup.html",
    "default_icon": "skin/logo16-disabled.png"
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "homepage_url": "https://www.stickypassword.com",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "skin/logo16.png",
    "32": "skin/logo32.png",
    "48": "skin/logo48.png",
    "128": "skin/logo128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "spFormElementPrototypeEx.js"
      ],
      "extension_ids": []
    }
  ],
  "background": {
    "service_worker": "spServiceWorker.js"
  },
  "version": "8.8.6.1292",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "spRequire.js",
        "spLog.js",
        "spStrings.js",
        "spFormElementPrototype.js",
        "spAutofillCore.js",
        "spBrowserSpecificTools.js",
        "spPageEventsMonitor.js",
        "spContent.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://*.stickypassword.com/*sp-autofillplugin-uninstall.html*",
        "file:///*spAutofill.xpi.uninstall.html"
      ],
      "run_at": "document_start",
      "js": [
        "spUninstallRedirect.js"
      ],
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "privacy",
    "tabs",
    "storage",
    "notifications",
    "nativeMessaging"
  ],
  "options_ui": {
    "page": "spSettings.html",
    "open_in_tab": true
  },
  "name": "__MSG_appName__",
  "default_locale": "en"
}