Click Scheduler Pro

Click Scheduler Pro

Easily schedule clicks for your window. I developed this extension as a means to submit an upload to a website where scheduling…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Click Scheduler Pro",
  "version": "1.0.1.0",
  "background": {
    "scripts": [
      "eventpage.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}