BoxShooter

BoxShooter

CheckBox etc. near from the mouse cursor are operated remotely.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BoxShooter",
  "version": "0.4.0",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "boxshooter_16.png",
    "19": "boxshooter_19.png",
    "32": "boxshooter.png",
    "48": "boxshooter_48.png",
    "128": "boxshooter_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "*://*/*",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "boxshooter.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "boxshooter_19.png",
    "default_title": "BoxShooter",
    "default_popup": "popup.html"
  },
  "options_page": "options.html"
}