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文件

下载Collegiate Scholar Link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}