Georgia Tech Scholar

Allows chrome to save your GT password, and provides easy access to online journal papers

O que é Georgia Tech Scholar?

Georgia Tech Scholar é uma extensão do Chrome desenvolvida por Felipe Salazar, e sua principal característica é "Allows chrome to save your GT password, and provides easy access to online journal papers".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Georgia Tech Scholar

Baixe arquivos de extensão Georgia Tech Scholar 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

                        For GT students, by a GT student, GT Scholar facilitates accessing online journal articles.

Two options are provided: 
1. proxying the entire google scholar search pages through GT library, and
2. adding direct 'proxified' links to articles

Unlike the "Find @ GT" option, GT Scholar links you directly to the journal's abstract page where you are typically one click away from the PDF.

Additionally, and optionally, GT Scholar enables Chrome to save your username and password natively at gthe GT CAS Login page; a feature that GT Login disables by default. To further clarify, the extension itself doesn't store anything; it just makes a minor edit to the login page's HTML at the right time so that Chrome can offer to save the username/password.                    

Informações Básicas da Extensão

Nome Georgia Tech Scholar Georgia Tech Scholar
ID apmephkccjilhccokdgiimomcmmlickg
URL Oficial https://chrome.google.com/webstore/detail/georgia-tech-scholar/apmephkccjilhccokdgiimomcmmlickg
Descrição Allows chrome to save your GT password, and provides easy access to online journal papers
Tamanho do Arquivo 52.72 KB
Contagem de Instalações 225
Versão Atual 2.0.3
Última Atualização 2013-08-19
Data de Publicação 2013-08-19
Classificação 4.56/5 Total de 9 Avaliações
Desenvolvedor Felipe Salazar
Tipo de Pagamento free
URL da Página de Ajuda http://www.prism.gatech.edu/~fsalazar3/contact.html
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Georgia Tech Scholar",
    "version": "2.0.3",
    "description": "Allows chrome to save your GT password, and provides easy access to online journal papers",
    "icons": {
        "16": "gt16.png",
        "48": "gt48.png"
    },
    "background": {
        "scripts": [
            "gtscholar.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/login.gatech.edu\/cas\/login*"
            ],
            "js": [
                "gtlogin.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/scholar.google.com\/*"
            ],
            "js": [
                "jquery.js",
                "direct2gt.js"
            ],
            "run_at": "document_end"
        }
    ]
}