Project Naptha

Project Naptha

Highlight, copy, edit, and translate text from any image on the web.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Project Naptha",
  "short_name": "Naptha",
  "description": "Highlight, copy, edit, and translate text from any image on the web.",
  "version": "0.9.5",
  "background": {
    "scripts": [
      "flame-monkey.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "naptha-wick.js"
      ],
      "css": [
        "naptha.css"
      ]
    }
  ],
  "permissions": [
    "clipboardWrite",
    "clipboardRead",
    "storage",
    "tts",
    "<all_urls>"
  ],
  "icons": {
    "128": "icon.png"
  }
}