Image Editor

Image Editor

You can modify image text, image text, image watermark, rotation, filter, crop, flip, color. And get the DataURL of the picture.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "the-image-editor.com",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "images/icons/128.png",
    "default_title": "__MSG_ext_name__",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_ext_description__",
  "homepage_url": "https://www.the-image-editor.com/",
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "48": "images/icons/48.png",
    "128": "images/icons/128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_ext_name__",
  "permissions": [
    "contextMenus"
  ],
  "host_permissions": [
    "*://*.the-image-editor.com/"
  ],
  "version": "1.6.915"
}