heylogin - 1-click login

heylogin - 1-click login

Login to any website with just one click. Use your phone to securely confirm logins - you have full control.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "version": "1.1.0.6278",
  "version_name": "1.1.0",
  "manifest_version": 2,
  "icons": {
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "64": "icons/icon_64.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_title": "heylogin",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "privacy",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "js": [
        "static/js/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "static/js/background.js"
    ]
  },
  "web_accessible_resources": [
    "iframe.html",
    "images/popup-spinner.png",
    "images/popup-background-portrait.png",
    "images/popup-background-landscape.png"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "omnibox": {
    "keyword": "hey"
  },
  "commands": {
    "search": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "__MSG_searchCommandDescription__",
      "global": true
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}