Maryville Library - Newspaper Access

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

Vad är Maryville Library - Newspaper Access?

Maryville Library - Newspaper Access är en Chrome-tillägg utvecklad av Maryville University, och dess huvudfunktion är "Allows you to access Maryville Library subscriptions for the NYTimes Times, WSJ, WashPo and the STL Post-Dispatch".

Tilläggsskärmbilder

screenshot

Ladda ner Maryville Library - Newspaper Access-förlängningens CRX-fil

Ladda ner Maryville Library - Newspaper Access-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Maryville Library - Newspaper Access Maryville Library - Newspaper Access
ID hbcffjlkdcaajkjncihjfogoepcmplih
Officiell webbadress https://chromewebstore.google.com/detail/maryville-library-newspap/hbcffjlkdcaajkjncihjfogoepcmplih
Beskrivning Allows you to access Maryville Library subscriptions for the NYTimes Times, WSJ, WashPo and the STL Post-Dispatch
Filstorlek 11.43 KB
Antal Installationer 113
Aktuell Version 1.0
Senast Uppdaterad 2018-02-12
Publiceringsdatum 2018-02-11
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Maryville University
Betalningssätt free
Stödda Språk 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"
        }
    ]
}