Diversity Plug Extension

Diversity Plug Extension

Display diversity and gender statistics as you cruise around the Internet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.4.0",
  "manifest_version": 2,
  "name": "Diversity Plug Extension",
  "homepage_url": "https://diversityplug.com",
  "description": "Display diversity and gender statistics as you cruise around the Internet",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/js/browser-polyfill.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "lib/js/browser-polyfill.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/favicon-gray-32x32.png"
  },
  "permissions": [
    "https://spreadsheets.google.com/",
    "storage",
    "unlimitedStorage",
    "webNavigation",
    "tabs",
    "alarms"
  ],
  "icons": {
    "128": "img/icon-128.png"
  }
}