Multiple Paste and Go Button

Multiple Paste and Go Button

This add-on provides a button to open multiple URLs from clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Multiple Paste and Go Button",
  "description": "__MSG_extensionDescription__",
  "version": "2.6.3",
  "developer": {
    "name": "wantora",
    "url": "https://github.com/wantora/multiple-paste-and-go-button"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "63.0"
    }
  },
  "default_locale": "en",
  "icons": {
    "48": "button/paste-and-go.png",
    "96": "button/[email protected]"
  },
  "permissions": [
    "clipboardRead",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "button/paste-and-go.svg",
    "default_title": "__MSG_pasteAndGoButtonLabel__"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Alt+V"
      }
    }
  },
  "options_ui": {
    "page": "options.html"
  }
}