Automatic Checker

Automatic Checker

This extension help improve speed to select standard checkbox and radio on webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Automatic Checker",
  "description": "This extension help improve speed to select standard checkbox and radio on webpage",
  "version": "2.1",
  "icons": {
    "16": "icons/checker_16x16.png",
    "32": "icons/checker_32x32.png",
    "48": "icons/checker_48x48.png",
    "128": "icons/checker_128x128.png"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "commands": {
    "command_check": {
      "suggested_key": "Ctrl+Shift+1",
      "description": "Check all"
    },
    "command_uncheck": {
      "suggested_key": "Ctrl+Shift+2",
      "description": "Uncheck all"
    },
    "command_invert": {
      "suggested_key": "Ctrl+Shift+3",
      "description": "Invert all"
    }
  },
  "action": {
    "default_icon": "icons/checker_32x32.png",
    "default_popup": "popup.html",
    "default_title": "Click to show!"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "webNavigation"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ]
}