Push Authenticator

Push Authenticator

Two Factor Authentication Simplified using Push Notification Verification

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Push Authenticator",
  "description": "Two Factor Authentication Simplified using Push Notification Verification",
  "version": "2.1",
  "icons": {
    "128": "icons/app_icon_128x128.png"
  },
  "browser_action": {
    "default_icon": "icons/app_icon_38x38.png",
    "default_popup": "popup.html",
    "default_title": "Push Authenticator"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [],
      "js": [
        "jquery-2.2.4.min.js",
        "content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery-2.2.4.min.js",
      "sjcl.js",
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "gcm",
    "storage"
  ]
}