Text to image

Text to image

Convert text to images on the fly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Text to image",
  "version": "1.0.1",
  "description": "Convert text to images on the fly",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "action": {
    "default_icon": "images/textimage.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "exclude_matches": [
        "https://analytics.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/textimage.png",
    "48": "images/textimage.png",
    "128": "images/textimage.png"
  },
  "short_name": "Textimage",
  "commands": {
    "copyImage": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Z",
        "mac": "Ctrl+Shift+Z",
        "chromeos": "Ctrl+Shift+Z",
        "linux": "Ctrl+Shift+Z"
      },
      "description": "To copy the image"
    },
    "downloadImage": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Down",
        "mac": "Ctrl+Shift+Down",
        "chromeos": "Ctrl+Shift+Down",
        "linux": "Ctrl+Shift+Down"
      },
      "description": "To download the image"
    }
  }
}