Scalenut: AI powered writer

Scalenut: AI powered writer

Write, Command, Rephrase, Simplify and multiple other use cases using Content AI from Scalenut

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scalenut: AI powered writer",
  "description": "Write, Command, Rephrase, Simplify and multiple other use cases using Content AI from Scalenut",
  "version": "1.62",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_popup": "./build/index.html",
    "default_icon": {
      "16": "/images/sn-logo16.png",
      "32": "/images/sn-logo32.png",
      "48": "/images/sn-logo48.png",
      "128": "/images/sn-logo128.png"
    }
  },
  "icons": {
    "16": "/images/sn-logo16.png",
    "32": "/images/sn-logo32.png",
    "48": "/images/sn-logo48.png",
    "128": "/images/sn-logo128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "ExtensionBabel.js"
      ],
      "css": [
        "./Extension.css"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.appscalenut.web.app/*",
      "https://admin-3a4ef.web.app/*",
      "https://*.scalenut.com/*"
    ]
  }
}