VN Auto Clicker

VN Auto Clicker

Auto click random link on your website, Auto fill keyword and search on your website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VN Auto Clicker",
  "manifest_version": 2,
  "version": "0.1.2",
  "description": "Auto click random link on your website, Auto fill keyword and search on your website.",
  "content_security_policy": "script-src 'self' https://vnlink.org/wp-admin/admin-ajax.php; object-src 'self';",
  "permissions": [
    "power",
    "storage",
    "contextMenus",
    "<all_urls>",
    "*://vnlink.org/*"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "jquery.min.js",
      "background.js"
    ]
  },
  "browser_action": {
    "name": "Manipulate DOM",
    "icons": [
      "icon.png"
    ],
    "default_icon": "icon-24.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon-16.png",
    "24": "icon-24.png",
    "32": "icon-32.png",
    "36": "icon-36.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "commands": {
    "clear_data": {
      "suggested_key": {
        "default": "Ctrl+Shift+X"
      },
      "description": "Clear data"
    }
  }
}