Stop écriture inclusive

Stop écriture inclusive

Corrige l’écriture inclusive d’une page web en temps réel.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Stop écriture inclusive",
  "version": "1.0.2",
  "homepage_url": "https://gitlab.com/stop-ecriture-inclusive/stop-ecriture-inclusive",
  "description": "Corrige l’écriture inclusive d’une page web en temps réel.",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "64": "icons/64x64.png",
    "96": "icons/96x96.png",
    "128": "icons/128x128.png"
  },
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background_script.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "browser-polyfill.js",
        "content_script.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/128x128.png",
    "default_title": "Stop Écriture Inclusive",
    "default_popup": "popup.html",
    "browser_style": true
  }
}