Photo Editor

Photo Editor

Photo Editor is a powerful application to edit any image or photo which are available on the internet. Just right click on the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Photo Editor",
  "short_name": "The powerful and free Photo Editor to edit any photo on the web",
  "offline_enabled": true,
  "version": "1.0.1",
  "manifest_version": 3,
  "author": "Rahul Baruri <[email protected]>",
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "48": "images/icons/48.png",
    "128": "images/icons/128.png",
    "256": "images/icons/256.png"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_icon": "images/icons/32.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/vendors/tui-image-editor/color-picker-style.css",
        "/vendors/tui-image-editor/style.css",
        "/styles/injectable.css",
        "/index.html"
      ],
      "matches": [
        "*://*/*",
        "ftp://*/*",
        "file:///*"
      ]
    }
  ]
}