Maryville Library - Newspaper Access

Maryville Library - Newspaper Access

Allows you to access Maryville Library subscriptions for the NYTimes Times, WSJ, WashPo and the STL Post-Dispatch

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Maryville Library - Newspaper Access",
  "short_name": "Maryville Access",
  "description": "Allows you to access Maryville Library subscriptions for the NYTimes Times, WSJ, WashPo and the STL Post-Dispatch",
  "author": "Maryville University",
  "version": "1.0",
  "icons": {
    "128": "128.png"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.nytimes.com/*",
        "*://*.wsj.com/*",
        "*://*.stltoday.com/*",
        "*://*.washingtonpost.com/*"
      ],
      "all_frames": true,
      "js": [
        "main.js"
      ],
      "run_at": "document_end"
    }
  ]
}