Auto Click Scheduler - FoxyClick

Auto Click Scheduler - FoxyClick

Just right click on any element and set a timer. Easy, fast and accurate.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Click Scheduler - FoxyClick",
  "description": "Just right click on any element and set a timer. Easy, fast and accurate.",
  "version": "1.3.8",
  "manifest_version": 3,
  "background": {
    "service_worker": "service-worker-right-click-menu.js"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-logic.js",
        "content-ext-awn.js",
        "content-ext-tingle.js",
        "content-ext-timepicker.js",
        "content-worker.js",
        "content-worker-csp-test.js",
        "content-servertime.js"
      ],
      "css": [
        "content-ext-awn.css",
        "content-ext-tingle.css",
        "content-ext-timepicker.css",
        "content-logic.css"
      ],
      "all_frames": true,
      "match_about_blank": false
    }
  ],
  "action": {
    "default_icon": "icon16.png",
    "default_title": "FoxyClick",
    "default_popup": "popup-credits.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/icon128.png",
        "/popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}