Macros

Macros

Save links as macros for later use.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Macros",
  "description": "Save links as macros for later use.",
  "version": "0.2",
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "128": "./icons/128.png"
  },
  "omnibox": {
    "keyword": "macros"
  },
  "manifest_version": 2
}