Superword | AI Writing Assistant

Superword | AI Writing Assistant

AI powered writing assistant to write, paraphrase, correct and translate anything online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Superword | AI Writing Assistant",
  "description": "AI powered writing assistant to write, paraphrase, correct and translate anything online.",
  "version": "1.0.1",
  "options_ui": {
    "page": "pages/options.html"
  },
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "action": {
    "default_icon": "icon/48.png",
    "default_popup": "pages/popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/*.js",
        "font/*.ttf",
        "img/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/c1.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "commands": {
    "ASK-OPENAI": {
      "suggested_key": {
        "default": "Ctrl+Period",
        "mac": "Command+Period",
        "linux": "Ctrl+Period"
      },
      "description": "Ask OPENAI to respond to the text in the current input"
    }
  },
  "permissions": [
    "storage",
    "cookies",
    "clipboardWrite",
    "clipboardRead"
  ],
  "host_permissions": [
    "https://superword.ai/"
  ]
}