DragLinks

DragLinks

Drag links to open them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "DragLinks",
  "version": "1.11",
  "description": "Drag links to open them in new foreground/background tab",
  "icons": {
    "48": "icons/vertical-drag-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file:///*"
      ],
      "js": [
        "drag.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  }
}