Verytas

Verytas

Don't be fooled by misinformation on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "includes/content.js"
      ]
    }
  ],
  "name": "Verytas",
  "icons": {
    "48": "icons/verytas.png",
    "128": "icons/verytas.png"
  },
  "web_accessible_resources": [
    "res/*",
    "assets/*",
    "icons/*"
  ],
  "description": "Don't be fooled by misinformation on the web.",
  "background": {
    "page": "background.html"
  },
  "homepage_url": "https://verytas.org/",
  "version": "0.1.1",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "webNavigation"
  ]
}