Correcteur d’orthographique - 100% gratuit

Correcteur d’orthographique - 100% gratuit

Correcteur Français avec chatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Correcteur d’orthographique - 100% gratuit",
  "short_name": "Correcteur d’orthographe - 100% gratuit",
  "description": "Correcteur Français avec chatGPT",
  "version": "1.0.3",
  "manifest_version": 3,
  "author": "Kevin Dufraisse",
  "action": {
    "default_icon": "img/icon16.png",
    "default_popup": "popup.html",
    "default_title": "Correcteur d’orthographe - 100% gratuit"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js",
        "/js/popup.js",
        "/js/marked.min.js",
        "js/purify.min.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  }
}