TasteWP: Free WordPress Instances

TasteWP: Free WordPress Instances

Spin up free WordPress instances for testing themes, plugins, or just playing around with WordPress!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Spin up free WordPress instances for testing themes, plugins, or just playing around with WordPress!",
  "version": "0.0.3",
  "name": "TasteWP: Free WordPress Instances",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_title": "TasteWP Popup"
  },
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/content.bundle.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/logo.svg",
        "images/background.svg",
        "images/background-450.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}