Gender Fair

Gender Fair

With our extension,you will see a GenderFair rating on whether a company,product or brand is making progress towards gender equality

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gender Fair",
  "description": "With our extension,you will see a GenderFair rating on whether a company,product or brand is making progress towards gender equality",
  "version": "1.0.0",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_title": "gender-fair",
    "default_popup": "popup/popup.html",
    "hotkey": [
      "ctrl",
      "g",
      "f"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "popup/popup.html"
  ]
}