Remove Ads from Photopea

Remove Ads from Photopea

Hides the ads on Photopea

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Remove Ads from Photopea",
  "description": "Hides the ads on Photopea",
  "author": "Jared Schwalbe",
  "version": "1.2.2",
  "manifest_version": 3,
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.photopea.com/*"
      ],
      "js": [
        "app.js"
      ]
    }
  ]
}