MockoFun Online Graphic Designer

MockoFun Online Graphic Designer

Grab any image off the internet and upload it into MockoFun. Then do image editing, add text, poster and flyer design, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MockoFun Online Graphic Designer",
  "version": "1.3",
  "description": "Grab any image off the internet and upload it into MockoFun. Then do image editing, add text, poster and flyer design, etc.",
  "icons": {
    "16": "img/logo-16.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "action": {
    "default_icon": {
      "16": "img/logo-16.png",
      "48": "img/logo-48.png",
      "128": "img/logo-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js",
        "js/mockofun.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/tmpAddCurvedTextScript.js",
        "js/tmpOpenImageScript.js",
        "img/logo-32.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "https://www.mockofun.com/create"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}