PQI WebAutoLogin

PQI WebAutoLogin

PQI AutoLoginApp

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PQI WebAutoLogin",
  "version": "1.3",
  "description": "PQI AutoLoginApp",
  "permissions": [
    "nativeMessaging",
    "background",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "64": "icon64.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.js",
        "content_scripts/content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}