I'm not robot captcha clicker

I'm not robot captcha clicker

I'm not robot captcha clicker

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "I'm not robot captcha clicker",
  "options_page": "options.html",
  "description": "I'm not robot captcha clicker",
  "version": "1.2.1",
  "icons": {
    "16": "icons/brt-logo16.png",
    "48": "icons/brt-logo48.png",
    "128": "icons/brt-logo128.png"
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_title": "Change the Options",
    "default_popup": "options.html"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "manifest_version": 2,
  "content_scripts": [
    {
      "run_at": "document_end",
      "all_frames": true,
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [],
      "js": [
        "jquery-2.1.4.min.js",
        "common.js",
        "myscript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "options.html",
    "Privacy-Policy.html"
  ]
}