Maryville Library - Newspaper Access

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

Was ist Maryville Library - Newspaper Access?

Maryville Library - Newspaper Access ist eine Chrome-Erweiterung, die von Maryville University entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to access Maryville Library subscriptions for the NYTimes Times, WSJ, WashPo and the STL Post-Dispatch".

Erweiterungsscreenshots

screenshot

Maryville Library - Newspaper Access-Erweiterungs-CRX-Datei herunterladen

Laden Sie Maryville Library - Newspaper Access-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        The Maryville University Library Chrome Extension allows you to view articles from the New York Times, Wall Street Journal, Washington Post and the St Louis Post-Dispatch. When you hit a paywall, if the Maryville University Library has access to that article, a notification will pop up alerting you; just click that notification and it will bring you to the full version of that article. Today, this extension only works from Maryville's campus but watch for future updates!                    

Grundlegende Informationen zur Erweiterung

Name Maryville Library - Newspaper Access Maryville Library - Newspaper Access
ID hbcffjlkdcaajkjncihjfogoepcmplih
Offizielle URL https://chromewebstore.google.com/detail/maryville-library-newspap/hbcffjlkdcaajkjncihjfogoepcmplih
Beschreibung Allows you to access Maryville Library subscriptions for the NYTimes Times, WSJ, WashPo and the STL Post-Dispatch
Dateigröße 11.43 KB
Installationsanzahl 113
Aktuelle Version 1.0
Letztes Update 2018-02-12
Veröffentlichungsdatum 2018-02-11
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler Maryville University
Zahlungsart free
Unterstützte Sprachen en-US
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"
        }
    ]
}