unbias.cc

unbias.cc

This extension allows the user to be aware of the biases encountered online

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.cc",
  "description": "This extension allows the user to be aware of the biases encountered online",
  "version": "1.1",
  "icons": {
    "16": "unbias_icon.png",
    "128": "unbias_icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://en.wikipedia.org/*"
      ],
      "css": [
        "css/unbias.css"
      ],
      "js": [
        "vendor/jquery-3.2.1.min.js",
        "vendor/mustache.min.js",
        "wikipedia/wikipage.js",
        "wikipedia/wikiPronounCount.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "templates/*"
  ],
  "permissions": [
    "activeTab",
    "storage"
  ]
}