Maryville Library - Newspaper Access

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

什麼是Maryville Library - Newspaper Access?

Maryville Library - Newspaper Access是由Maryville University開發的Chrome擴展程式,該擴展的主要功能是“Allows you to access Maryville Library subscriptions for the NYTimes Times, WSJ, WashPo and the STL Post-Dispatch”。

擴展截圖

screenshot

下載Maryville Library - Newspaper Access擴展crx文件

下載Maryville Library - Newspaper Access擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Maryville Library - Newspaper Access Maryville Library - Newspaper Access
ID hbcffjlkdcaajkjncihjfogoepcmplih
官方網址 https://chromewebstore.google.com/detail/maryville-library-newspap/hbcffjlkdcaajkjncihjfogoepcmplih
簡介 Allows you to access Maryville Library subscriptions for the NYTimes Times, WSJ, WashPo and the STL Post-Dispatch
檔案大小 11.43 KB
安裝次數 113
目前版本 1.0
更新時間 2018-02-12
上架時間 2018-02-11
評分 1.00/5 共 1 次評分
開發者 Maryville University
付費類型 free
支援的語言 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"
        }
    ]
}