NeuralWriter — rewriting and paraphrasing

NeuralWriter — rewriting and paraphrasing

Allow hard paraphrase/rewrite mode for neuralwriter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "96",
  "name": "NeuralWriter — rewriting and paraphrasing",
  "version": "1.0.21",
  "description": "Allow hard paraphrase/rewrite mode for neuralwriter",
  "permissions": [
    "scripting",
    "alarms",
    "background",
    "storage",
    "system.display",
    "idle",
    "declarativeNetRequest",
    "proxy",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "general.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "nw.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Neural Writer"
  },
  "icons": {
    "128": "128.png"
  }
}