QuickDrag for Chrome

QuickDrag for Chrome

ドラッグ&ドロップジェスチャーの機能を拡張し、選択したURL・テキストのWeb検索、ページ上の画像の保存を可能にします。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "QuickDrag for Chrome",
  "permissions": [
    "storage",
    "downloads"
  ],
  "version": "6.1.1",
  "description": "ドラッグ&ドロップジェスチャーの機能を拡張し、選択したURL・テキストのWeb検索、ページ上の画像の保存を可能にします。",
  "icons": {
    "48": "icons/icon_48.png",
    "96": "icons/icon_96.png",
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_icon": {
      "48": "icons/icon_48.png",
      "96": "icons/icon_96.png",
      "128": "icons/icon_128.png"
    },
    "default_title": "QuickDrag options",
    "default_popup": "options.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "quickdrag.js"
      ],
      "run_at": "document_start",
      "match_about_blank": true,
      "all_frames": true
    }
  ]
}