Enhanced Image

Enhanced Image

Extract and select the text from images, adjust the image colors, modify the image appearance.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Enhanced Image",
  "short_name": "eImage",
  "description": "Extract and select the text from images, adjust the image colors, modify the image appearance.",
  "author": "Plurid, Inc.",
  "version": "0.0.3",
  "icons": {
    "16": "assets/icons/icon16.png",
    "32": "assets/icons/icon32.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "permissions": [
    "contextMenus",
    "cookies",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "include_globs": [
        "**.jpg",
        "**=jpg**",
        "**.jpeg",
        "**.jpeg**",
        "**=jpeg**",
        "**.png",
        "**.png**",
        "**=png**",
        "**.gif",
        "**.gif**",
        "**=gif**",
        "**.webp",
        "**.webp**",
        "**=webp**"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "enhanced-image-html/dist/**.js"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_title": "Enhanced Image",
    "default_icon": "assets/icons/icon.png",
    "default_popup": "popup.html"
  },
  "incognito": "spanning",
  "content_security_policy": "script-src 'self' 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU='; object-src 'self'"
}