Macro

Macro

Provides powerful website-specific shortcuts and instant keyboard shortcut discovery across many websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Macro",
  "description": "Provides powerful website-specific shortcuts and instant keyboard shortcut discovery across many websites.",
  "version": "2.0.5",
  "icons": {
    "128": "img/icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "img/icon.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "webNavigation",
    "storage",
    "http://*/",
    "https://*/",
    "*://*/*"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com 'unsafe-eval'; object-src 'self'",
  "commands": {},
  "web_accessible_resources": [
    "img/*.png"
  ]
}