Serum

Serum

A fact checking plugin for websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Serum",
  "description": "A fact checking plugin for websites.",
  "version": "2.1.7",
  "default_locale": "en",
  "browser_action": {
    "default_icon": "ressources/icon.png",
    "default_popup": "popover.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "https://ajax.googleapis.com/",
    "https://serum-dev.herokuapp.com/",
    "https://serumdev.herokuapp.com/*",
    "http://*.facebook.com/*",
    "https://*.facebook.com/*",
    "identity"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "jquery.color.min.js",
        "pop.js"
      ],
      "matches": [
        "http://*/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}