MacroKing

MacroKing

Shortcuts to browse the web without the need for a mouse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MacroKing",
  "description": "Shortcuts to browse the web without the need for a mouse.",
  "version": "0.21",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "mk-styles.css"
      ],
      "js": [
        "jquery.js",
        "content.min.js",
        "jquery.visible.min.js"
      ]
    }
  ]
}