Quick Launch Toolbar

Quick Launch Toolbar

This extension launches links from a toolbar in a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Quick Launch Toolbar",
  "description": "This extension launches links from a toolbar in a new tab.",
  "version": "0.1.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "64": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery-2.2.4.min.js",
        "js/content_script.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "https://ajax.googleapis.com/"
  ]
}