NoMorePass : Forget your passwords

NoMorePass : Forget your passwords

Use your mobile phone to log into your websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "author": "Jose Antonio Espinosa - NoMorePass.com",
  "version": "4.0.0",
  "short_name": "NoMorePass",
  "manifest_version": 3,
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://www.nomorepass.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "src/bg/background.js"
  },
  "options_page": "options.html",
  "action": {
    "default_icon": "icons/icon19.png",
    "default_title": "No More Passwords"
  },
  "permissions": [
    "declarativeContent",
    "scripting",
    "tabs",
    "clipboardWrite",
    "contextMenus",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*png",
        "img/*gif"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}