Zingy Reader

Zingy Reader

Select text to have it read out loud or translated.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Zingy Reader",
  "version": "1.2",
  "description": "Select text to have it read out loud or translated.",
  "action": {
    "default_icon": {
      "19": "/images/icon19.png",
      "38": "/images/icon38.png"
    },
    "default_title": "Zingy Reader"
  },
  "background": {
    "service_worker": "background/background.js"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/images/Jcrop.gif",
        "/images/pixel.png",
        "/images/repeat.png"
      ]
    }
  ],
  "commands": {
    "take-screenshot": {
      "description": "Take Screenshot"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_origin_as_fallback": true,
      "js": [
        "/popup/popup-content.js"
      ]
    }
  ],
  "options_page": "options/options.html",
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; media-src https://translate.google.com/; connect-src https://translate.google.com/"
  }
}