qSandbox - Quick test/sandbox WordPress site

qSandbox - Quick test/sandbox WordPress site

This extension allows you to quickly install plugins and themes on the qSandbox platform with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "qSandbox - Quick test/sandbox WordPress site",
  "short_name": "qSandbox",
  "description": "This extension allows you to quickly install plugins and themes on the qSandbox platform with a single click.",
  "version": "1.0.7",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "assets/images/icon_128.png"
  },
  "background": {
    "scripts": [
      "shared/jquery-2.1.1.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "css": [
        "assets/app.css"
      ],
      "js": [
        "shared/jquery-2.1.1.min.js",
        "assets/get_page_source.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "shared/jquery-2.1.1.min.js"
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>",
    "tabs",
    "storage"
  ]
}