Make it She

Make it She

[Bridge the online gender gap]

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Make it She",
  "description": "[Bridge the online gender gap]",
  "version": "9.0",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "120": "icon_on.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon_off.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.min.js",
        "data/associative.js",
        "data/words.js",
        "data/fnames.js",
        "data/firstnames.js",
        "data/frenchwords.js",
        "data/spanishwords.js",
        "content.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://canvasjs.com/assets/script/canvasjs.min.js https://cdn.jsdelivr.net/npm/[email protected]/build/pdf.min.js https://cdn.jsdelivr.net/npm/[email protected]/build/pdf.worker.js; object-src 'self'",
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "history"
  ]
}