Outlined: Quickly outline links

Outlined: Quickly outline links

Opens up an outline link of current url when Ctrl+Shift+E (Command+Shift+E on Mac) is pressed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Outlined: Quickly outline links",
  "version": "1.0.1",
  "description": "Opens up an outline link of current url when Ctrl+Shift+E (Command+Shift+E on Mac) is pressed",
  "permissions": [
    "tabs"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "outline-link": {
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      },
      "description": "Open Outline link"
    }
  },
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}