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」です。
拡張機能のスクリーンショット
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! 拡張機能の基本情報
| 名前 | |
| 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"
}
]
} | |