Maryville Library - Newspaper Access

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

O que é Maryville Library - Newspaper Access?

Maryville Library - Newspaper Access é uma extensão do Chrome desenvolvida por Maryville University, e sua principal característica é "Allows you to access Maryville Library subscriptions for the NYTimes Times, WSJ, WashPo and the STL Post-Dispatch".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Maryville Library - Newspaper Access

Baixe arquivos de extensão Maryville Library - Newspaper Access no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Maryville Library - Newspaper Access Maryville Library - Newspaper Access
ID hbcffjlkdcaajkjncihjfogoepcmplih
URL Oficial https://chromewebstore.google.com/detail/maryville-library-newspap/hbcffjlkdcaajkjncihjfogoepcmplih
Descrição Allows you to access Maryville Library subscriptions for the NYTimes Times, WSJ, WashPo and the STL Post-Dispatch
Tamanho do Arquivo 11.43 KB
Contagem de Instalações 113
Versão Atual 1.0
Última Atualização 2018-02-12
Data de Publicação 2018-02-11
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor Maryville University
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}