Georgia Tech Scholar

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

Georgia Tech Scholar란 무엇입니까?

Georgia Tech Scholar은(는) Felipe Salazar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows chrome to save your GT password, and provides easy access to online journal papers"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Georgia Tech Scholar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Georgia Tech Scholar Georgia Tech Scholar
ID apmephkccjilhccokdgiimomcmmlickg
공식 URL https://chrome.google.com/webstore/detail/georgia-tech-scholar/apmephkccjilhccokdgiimomcmmlickg
설명 Allows chrome to save your GT password, and provides easy access to online journal papers
파일 크기 52.72 KB
설치 횟수 225
현재 버전 2.0.3
최근 업데이트 2013-08-19
출시 날짜 2013-08-19
평점 4.56/5 총 9 개의 평점
개발자 Felipe Salazar
결제 유형 free
도움말 페이지 URL http://www.prism.gatech.edu/~fsalazar3/contact.html
지원되는 언어 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"
        }
    ]
}