One Browser Agent

One Browser Agent

This agent monitors the browser and captures the login forms and send them to One Key Applicaiton

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "One Browser Agent",
  "version": "1.0",
  "manifest_version": 2,
  "description": "This agent monitors the browser and captures the login forms and send them to One Key Applicaiton",
  "icons": {
    "16": "images/logo16.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "js/aes.js",
      "js/util.js",
      "js/agentbackground.js"
    ]
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "contextMenus",
    "management"
  ],
  "web_accessible_resources": [
    "js/pageAgent.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-2.2.2.min.js",
        "js/util.js",
        "js/htmlutil.js",
        "js/okagent.js"
      ],
      "run_at": "document_start"
    }
  ]
}