Secure AI Grammar Checker - GrammarSafe

Check What Matters — Keep the Rest Private. Proofread only selected text via ChatGPT and show corrected text in a pop-up.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Grammar Checker (beta v3)",
  "version": "1.3",
  "description": "Proofread selected text via ChatGPT and show corrected text in a pop-up.",
  "browser_specific_settings": {
    "gecko": {
      "id": "{68e6301c-7c9a-4345-9d00-734178ae0f26}"
    }
  },
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "host_permissions": [
    "https://gbapi.webcreator.ws/api/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "icons": {
    "48": "icons/icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icons/icon.png"
  }
}