Auto Radio Button Checker

Auto Radio Button Checker

takes a snapshot of a page you have checked to automatically checks the buttons you access that page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Auto Radio Button Checker",
  "description": "takes a snapshot of a page you have checked to automatically checks the buttons you access that page.",
  "version": "0.11",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ]
}