Drag & DropZones (Revived)

Drag & DropZones (Revived)

Replace the context menu with fancy Drag & DropZones

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Drag & DropZones",
  "short_name": "iddzones",
  "description": "Replace the context menu with fancy Drag & DropZones",
  "author": "Andy Portmen",
  "version": "0.1.3resigned1",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "tabs",
    "bookmarks",
    "clipboardWrite",
    "notifications",
    "downloads",
    "<all_urls>"
  ],
  "homepage_url": "http://add0n.com/drag-and-dropzones.html",
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "64": "data/icons/64.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "common.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "data/drag.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    "data/*"
  ],
  "options_ui": {
    "page": "data/options/index.html",
    "chrome_style": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{5ad7a928-a95a-442c-9c21-ee0570a7f418}"
    }
  }
}