Open Selected URLs In New Tabs Context Menu

Open Selected URLs In New Tabs Context Menu

Open Selected URLs In New Tabs Context Menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "0.1",
  "manifest_version": 2,
  "description": "__MSG_extDesc__",
  "icons": {
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": ""
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js",
      "contentScript.js"
    ]
  },
  "default_locale": "en",
  "permissions": [
    "contextMenus",
    "activeTab",
    "<all_urls>"
  ]
}