FirstDraftNewsCheck

FirstDraftNewsCheck

First Draft NewsCheck is an interactive version of First Draft’s Visual Verification Guide for Images and Videos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FirstDraftNewsCheck",
  "version": "0.5.3",
  "manifest_version": 2,
  "description": "First Draft NewsCheck is an interactive version of First Draft’s Visual Verification Guide for Images and Videos",
  "homepage_url": "http://firstdraftnews.com",
  "content_scripts": [
    {
      "matches": [
        "http://still-refuge-99320.herokuapp.com//auth/twitter/callback",
        "http://127.0.0.1:3000//auth/twitter/callback",
        "http://localhost:3000//auth/twitter/callback"
      ],
      "js": [
        "content/index.js"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background/index.js"
    ]
  },
  "browser_action": {
    "default_title": "browser action demo",
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "notifications"
  ],
  "icons": {
    "16": "$assets/FD-16.png",
    "32": "$assets/FD-32.png",
    "128": "$assets/FD-128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}