No Fake News

No Fake News

Labels news (left/right-leaning, neutral, satire, or fake) on your Facebook feed based on their source.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "No Fake News",
  "version": "0.2",
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "description": "Labels news (left/right-leaning, neutral, satire, or fake) on your Facebook feed based on their source.",
  "browser_action": {
    "name": "No Fake News",
    "icons": [
      "icon.png"
    ],
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}