Open Mind

Open Mind

Open Mind is web extension designed to combat fake news and political polarization, using cognitive science and machine learning.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Open Mind",
  "description": "Open Mind is web extension designed to combat fake news and political polarization, using cognitive science and machine learning.",
  "version": "0.0.16",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "include/custom.css"
      ],
      "js": [
        "build/contentScripts.js",
        "include/bootstrap-4.3.1-dist/js/bootstrap.bundle.min.js",
        "include/bootstrap-4.3.1-dist/js/bootstrap.min.js",
        "include/bootstrap-4.3.1-dist/js/bootstrap.js",
        "include/bootstrap-4.3.1-dist/js/bootstrap.bundle.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "scripts/jQuery.js",
      "background.js"
    ],
    "persistent": false
  },
  "chrome_url_overrides": {
    "newtab": "site/build/index.html"
  },
  "permissions": [
    "storage",
    "notifications",
    "https://api.openmind.press/*"
  ]
}