The Factual - News Evaluator

The Factual - News Evaluator

Get smarter about the news you read

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "The Factual - News Evaluator",
  "short_name": "The Factual - News Evaluator",
  "description": "Get smarter about the news you read",
  "version": "7.2.1",
  "browser_action": {
    "default_icon": "thefactual-16x16.png",
    "default_title": "Analyze the News"
  },
  "icons": {
    "16": "thefactual-16x16.png",
    "32": "thefactual-32x32.png",
    "48": "thefactual-48x48.png",
    "128": "thefactual-icon.png"
  },
  "externally_connectable": {
    "matches": [
      "https://*.thefactual.com/*"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+G",
        "mac": "MacCtrl+Shift+G",
        "chromeos": "Ctrl+Shift+G",
        "linux": "Ctrl+Shift+G"
      }
    }
  },
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "content_security_policy": "script-src 'self' https://cdn.ravenjs.com/3.25.2/raven.min.js https://cdn.heapanalytics.com https://www.google-analytics.com/ https://cdn.heapanalytics.com https://heapanalytics.com; object-src 'self'; img-src * 'self' https://res.cloudinary.com/;  connect-src * 'self'; font-src 'self' https://fonts.googleapis.com/;",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs",
    "https://forum.cvko.co/*",
    "https://*.thefactual.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery-3.3.1.min.js",
        "domain_white_list.js",
        "domain_black_list.js",
        "fb/fb_scraper.js"
      ],
      "css": [
        "fb/fbStyle.css"
      ],
      "matches": [
        "https://www.facebook.com/*"
      ]
    },
    {
      "js": [
        "jquery-3.3.1.min.js",
        "domain_white_list.js",
        "domain_black_list.js",
        "twitter/twt_scraper.js"
      ],
      "css": [
        "twitter/twtStyle.css"
      ],
      "matches": [
        "https://www.twitter.com/*",
        "https://twitter.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "popup.html",
    "updatePrompt.html",
    "thefactual-48x48.png",
    "thefactual-192x192.png",
    "thefactual-white.png",
    "thefactual-icon.png",
    "thefactual-GREEN-48x48.png",
    "thefactual-YELLOW-48x48.png",
    "thefactual-ORANGE-48x48.png",
    "thefactual-RED-48x48.png"
  ],
  "incognito": "split",
  "offline_enabled": false,
  "homepage_url": "https://www.thefactual.com"
}