autoclick

autoclick

Automatic click, timed click, automated task

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "com/chrome.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/logo.png",
    "default_title": "autoclick"
  },
  "content_scripts": [
    {
      "css": [
        "css/auto.css"
      ],
      "js": [
        "js/jquery-1.9.1.min.js",
        "js/bus.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Automatic click, timed click, automated task",
  "homepage_url": "https://lipusen.github.io/show/aotoclick.html",
  "icons": {
    "16": "img/logo-16.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "manifest_version": 2,
  "name": "autoclick",
  "permissions": [
    "contextMenus",
    "tabs",
    "notifications",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.2",
  "web_accessible_resources": [
    "css/*",
    "img/*",
    "fonts/*",
    "js/*"
  ]
}