Writer

Writer

Generative AI in all the places you work

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Writer",
  "version": "2.0.3",
  "description": "Generative AI in all the places you work",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "cookies",
    "storage",
    "scripting",
    "sidePanel"
  ],
  "host_permissions": [
    "https://app.writer.com/*",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "service_worker": "static/background.js"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_title": "Open Writer Side Panel",
    "default_icon": {
      "36": "assets/icon/off.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://docs.google.com/spreadsheets/*",
        "*://miro.com/*",
        "*://www.achieve.com/*",
        "*://*.sdlproducts.com/*",
        "*://onedrive.live.com/*",
        "*://*.sharepoint.com/*",
        "*://*.writer.com/organization/*/team/*/document/*",
        "*://*.writer.com/*/document/*",
        "*://*.styleguide.com/*",
        "*://ask.writer.com/*",
        "*://ask1.writer.com/*",
        "*://writer.com/grammar-checker/*"
      ],
      "css": [
        "static/global.css"
      ],
      "js": [
        "static/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/sidePanelButton.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://docs.google.com/spreadsheets/*",
        "*://miro.com/*",
        "*://www.achieve.com/*",
        "*://*.sdlproducts.com/*",
        "*://onedrive.live.com/*",
        "*://*.sharepoint.com/*",
        "*://*.writer.com/organization/*/team/*/document/*",
        "*://*.writer.com/*/document/*",
        "*://*.styleguide.com/*",
        "*://ask.writer.com/*",
        "*://ask1.writer.com/*",
        "*://writer.com/grammar-checker/*"
      ],
      "js": [
        "static/iframeInit.js"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "match_about_blank": true,
      "match_origin_as_fallback": true
    },
    {
      "matches": [
        "https://app.writer.com/*"
      ],
      "js": [
        "static/writerApp.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "js": [
        "static/gdocsInit.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "js": [
        "static/gdocsPreInject.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "fonts/*",
        "css/*",
        "static/inline-assets/*",
        "static/global.css",
        "static/content.js",
        "static/gdocsInit.js",
        "static/gdocsPreInjectImpl.js",
        "static/gdocsAnnotatedCanvas.js",
        "static/buzzFeedInjectScript.js",
        "static/iframeInit.js",
        "static/sidePanel.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3
}