DragAndDrop Gestures Mini

DragAndDrop Gestures Mini

Image Link Drag And Drop Download

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "うみゅ",
  "description": "__MSG_G_description__",
  "name": "DragAndDrop Gestures Mini",
  "short_name": "__MSG_G_short_name__",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "./image/icon.png",
    "default_title": "__MSG_G_browser_action_default_title__",
    "default_popup": "./popup/popup.html"
  },
  "options_page": "./popup/popup.html",
  "permissions": [
    "downloads",
    "storage"
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/log.js",
        "js/configure.js",
        "js/message.js",
        "js/gestures.js"
      ],
      "run_at": "document_start"
    }
  ],
  "homepage_url": "https://github.com/umyuu/draganddropgesturesmini/",
  "web_accessible_resources": [
    "resources/setting.json"
  ],
  "version": "1.0.7"
}