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
官方URL 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"
        }
    ]
}