Centr: Political Bias Detector

Centr: Political Bias Detector

Use Deep Learning to detect political bias in your news!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "minimum_chrome_version": "23",
  "name": "Centr: Political Bias Detector",
  "short_name": "Centr",
  "description": "Use Deep Learning to detect political bias in your news!",
  "version": "1.0.0.5",
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/transparent.png",
    "128": "images/128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "images/transparent.png",
    "default_popup": "popup.html",
    "default_title": "Political Bias Detector"
  },
  "web_accessible_resources": [
    "page-styling.css"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "contentscript.js"
      ],
      "css": [
        "page-styling.css"
      ]
    }
  ]
}