Gender Filter

Gender Filter

An Extension that allows the user to filter gender words ending with '*in' and '*innen'

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gender Filter",
  "description": "An Extension that allows the user to filter gender words ending with '*in' and '*innen'",
  "version": "1.0",
  "manifest_version": 3,
  "action": {
    "default_popup": "/html/popup.html",
    "default_icon": {
      "16": "/images/logo-16.png",
      "32": "/images/logo-32.png",
      "48": "/images/logo-64.png",
      "128": "/images/logo-128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "/css/pageStyle.css"
      ],
      "js": [
        "/js/content-script.js"
      ]
    }
  ],
  "icons": {
    "16": "/images/logo-16.png",
    "32": "/images/logo-32.png",
    "48": "/images/logo-64.png",
    "128": "/images/logo-128.png"
  }
}