Foster – your friendly, human writing partner

Foster – your friendly, human writing partner

Send a draft of writing into Foster’s network of writers and editors to receive editorial and collaborative support.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Send a draft of writing into Foster’s network of writers and editors to receive editorial and collaborative support.",
  "version": "2.55",
  "host_permissions": [
    "*://*.foster.co/"
  ],
  "manifest_version": 3,
  "name": "Foster – your friendly, human writing partner",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "assets/public/foster_icon_32.png"
  },
  "icons": {
    "128": "assets/public/foster_icon_128.png"
  },
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.foster.co/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "https://docs.google.com/document/*"
      ],
      "js": [
        "scripts/scriptInjector.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/*"
      ],
      "matches": [
        "*://docs.google.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "cookies",
    "alarms",
    "scripting"
  ]
}