Noam - ChatGPT translate assistant & Deep Translation

Noam - ChatGPT translate assistant & Deep Translation

Your versatile translation assistant, driven by GPT-4, provides a smoother AI translation and reading experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "static/icon__noam-logo-main.png",
    "32": "static/icon__noam-logo-main.png",
    "48": "static/icon__noam-logo-main.png",
    "128": "static/icon__noam-logo-main.png"
  },
  "action": {
    "default_icon": {
      "16": "static/icon__noam-logo-main.png",
      "32": "static/icon__noam-logo-main.png",
      "48": "static/icon__noam-logo-main.png",
      "128": "static/icon__noam-logo-main.png"
    },
    "default_popup": "popup.html"
  },
  "options_page": "option.html",
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "scripting",
    "tts",
    "contextMenus",
    "webRequest"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "static/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://noam.cool/*",
      "https://noam.tools/*",
      "https://noamdev.miemie.la/*"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}