JetBrains Grazie: Writing Assistant

JetBrains Grazie: Writing Assistant

Compose documentation and your content with grammar checks, autocompletion, and rephrasing for polished writing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_plugin_title__",
  "default_locale": "en",
  "version": "1.0.2",
  "manifest_version": 3,
  "description": "__MSG_plugin_description__",
  "icons": {
    "16": "resources/icons/browser/icon-16.png",
    "48": "resources/icons/browser/icon-48.png",
    "128": "resources/icons/browser/icon-128.png",
    "256": "resources/icons/browser/icon-256.png"
  },
  "permissions": [
    "tabs",
    "alarms",
    "scripting",
    "storage",
    "contextMenus",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file:///*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injection/injection.js",
        "fonts/fonts.css",
        "content-script/content-script.css",
        "resources/icons/*",
        "resources/fonts/*",
        "vendors/*",
        "commons/*",
        "login/*",
        "content-script/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "content-script/content-script.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    },
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "run_at": "document_start",
      "js": [
        "content-script/gdocs-entry.js"
      ]
    }
  ],
  "options_page": "settings/settings.html",
  "action": {
    "default_icon": {
      "128": "resources/icons/browser/icon-128.png",
      "256": "resources/icons/browser/icon-256.png"
    },
    "default_title": "Grazie",
    "default_popup": "popup/popup.html"
  },
  "version_name": "1.0.2"
}