Omnivox Auto Login

Omnivox Auto Login

Save password and automatically log in on *.omnivox.ca

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Omnivox Auto Login",
  "version": "21.4.28",
  "description": "Save password and automatically log in on *.omnivox.ca",
  "homepage_url": "https://github.com/wengh/Omnivox-Auto-Login",
  "manifest_version": 2,
  "minimum_chrome_version": "74",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "*://*.omnivox.ca/*"
  ],
  "background": {
    "scripts": [
      "jquery.slim.min.js",
      "browser-polyfill.min.js",
      "common.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "jquery.slim.min.js",
        "browser-polyfill.min.js",
        "common.js",
        "content.js"
      ],
      "run_at": "document_idle",
      "matches": [
        "*://*.omnivox.ca/*"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ]
}