Collegiate Scholar Link

This extension makes better use of Google Scholar for scholars.

Collegiate Scholar Link란 무엇입니까?

Collegiate Scholar Link은(는) http://joeycn.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension makes better use of Google Scholar for scholars."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Collegiate Scholar Link 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Don't know how to download a scientific paper from a publisher off campus? 
Collegiate Scholar Link provides additional links for Google Scholar search results. Through those links, you can access the articles anywhere via your university's proxy service. If you're tired of VPN and poor searching functionality of your university's library portal, Collegiate Scholar Link may ease your life a little.
Currently, Collegiate Scholar Link currently supports UT Arlington, UT Dallas, UT Austin and SDState.                    

확장 프로그램 기본 정보

이름 Collegiate Scholar Link Collegiate Scholar Link
ID lmammanhmfopafiiopefcedjiffdogdf
공식 URL https://chrome.google.com/webstore/detail/collegiate-scholar-link/lmammanhmfopafiiopefcedjiffdogdf
설명 This extension makes better use of Google Scholar for scholars.
파일 크기 206 KB
설치 횟수 320
현재 버전 0.0.7
최근 업데이트 2016-09-14
출시 날짜 2016-09-14
개발자 http://joeycn.github.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://joeycn.github.io/cslink
도움말 페이지 URL https://www.facebook.com/CollegiateScholarLink/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Collegiate Scholar Link",
    "short_name": "CSLink",
    "author": "[email protected]",
    "version": "0.0.7",
    "description": "This extension makes better use of Google Scholar for scholars.",
    "icons": {
        "16": "icons\/ico-16.png",
        "39": "icons\/ico-39.png",
        "48": "icons\/ico-48.png",
        "128": "icons\/ico-128.png",
        "256": "icons\/ico-256.png"
    },
    "background": {
        "scripts": [
            "js\/proxy_bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scholar.google.com\/*"
            ],
            "js": [
                "js\/jquery-1.12.0.min.js",
                "js\/bootstrap.min.js",
                "js\/proxy.js",
                "js\/proxy-opt.js"
            ],
            "css": [
                "css\/bootstrap.min.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "page_action": {
        "default_name": "Collegiate Scholar Link",
        "default_icon": "icons\/ico-39.png",
        "default_popup": "pages\/popup.html"
    },
    "web_accessible_resources": [
        "icons\/*.png",
        "pages\/*.html"
    ],
    "manifest_version": 2
}