DragDropr - Drag & Drop Page Builder

DragDropr - Drag & Drop Page Builder

DragDropr lets you create, edit & design content for your website, webshop, or any other web content by dragging and dropping.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "DragDropr - Drag & Drop Page Builder",
  "version": "1.3.1",
  "description": "DragDropr lets you create, edit & design content for your website, webshop, or any other web content by dragging and dropping.",
  "icons": {
    "16": "./icons/16.png",
    "48": "./icons/48.png",
    "128": "./icons/128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://app.dragdropr.com/*"
      ],
      "js": [
        "dragdropr.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "exclude_matches": [
        "*://app.dragdropr.com/*"
      ],
      "js": [
        "content_scripts/plugins.js"
      ]
    },
    {
      "matches": [
        "https://app.marketplan.io/*"
      ],
      "js": [
        "scripts/plugins.js",
        "content_scripts/pages/app.marketplan.io.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "scripts/plugins.js"
  ],
  "browser_action": {
    "default_icon": "./icons/32gray.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "management"
  ],
  "offline_enabled": false,
  "minimum_chrome_version": "50"
}