Journal Watch

Journal Watch

Puts a WARNING tag on some journals on Google Scholar and PubMed. Also allows filtering by impact factor on PubMed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Journal Watch",
  "description": "Puts a WARNING tag on some journals on Google Scholar and PubMed. Also allows filtering by impact factor on PubMed.",
  "version": "1.43",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "*://davidcraigmd.org/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://scholar.google.com/*",
        "*://www.ncbi.nlm.nih.gov/*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "jquery.csv.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}