1-Click URL Opener

1-Click URL Opener

This extension allows you to open all the URLs that you want with the click of 1 button

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "1-Click URL Opener",
  "description": "This extension allows you to open all the URLs that you want with the click of 1 button",
  "version": "1.4.3",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": "icon_32.png"
  },
  "icons": {
    "48": "icon_48.png",
    "96": "icon_96.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}