QuickDrag WE

QuickDrag WE

Extends the function of the drag-and-drop mouse gesture so that it can be used to load URLs, do a web search of selected text on a page, or save an image on a page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "QuickDrag WE",
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "downloads"
  ],
  "version": "5.4.1",
  "description": "ドラッグ&ドロップジェスチャーの機能を拡張し、選択したURL・テキストのWeb検索、ページ上の画像の保存を可能にします。",
  "icons": {
    "48": "icons/icon_48.png",
    "96": "icons/icon_96.png"
  },
  "browser_action": {
    "default_icon": {
      "48": "icons/icon_48.png",
      "96": "icons/icon_96.png"
    },
    "default_title": "QuickDrag options",
    "default_popup": "options.html"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "quickdrag.js"
      ],
      "run_at": "document_start",
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{394d28af-d44e-4882-b051-bed7b7d79d7d}"
    }
  }
}