Autochecker Antispam & Checkbox Tool

Autochecker Antispam & Checkbox Tool

Autochecker attempts to avoid marketing spam and automatically accepts terms and conditions when filling out forms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Autochecker Antispam & Checkbox Tool",
  "short_name": "Autochecker Checkbox Tool",
  "version": "1.0.3",
  "description": "Autochecker attempts to avoid marketing spam and automatically accepts terms and conditions when filling out forms.",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "storage"
  ],
  "browser_action": {},
  "background": {
    "scripts": [
      "notificationListener.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "index.js"
      ]
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  }
}