Unbias the Internet

Unbias the Internet

Remove gender identifiers from web pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Unbias the Internet",
  "description": "Remove gender identifiers from web pages.",
  "version": "1.0.1.1",
  "browser_action": {
    "default_icon": {
      "38": "icon38.png",
      "128": "icon128.png"
    },
    "default_popup": "popup.html",
    "default_title": "Unbias"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "exclude_globs": [
        "http://www.google.com/*"
      ]
    }
  ]
}