StoryTracer

StoryTracer

Finds the source of original reporting in a story

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "StoryTracer",
  "description": "Finds the source of original reporting in a story",
  "version": "0.1.4",
  "background": {
    "scripts": [
      "ground-truth-bundle.js",
      "traceStory.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "getUrlFromPage.js"
      ],
      "css": [
        "dialogStyle.css"
      ]
    }
  ],
  "permissions": [
    "http://*/",
    "https://*/"
  ]
}