Collegiate Scholar Link

This extension makes better use of Google Scholar for scholars.

Was ist Collegiate Scholar Link?

Collegiate Scholar Link ist eine Chrome-Erweiterung, die von http://joeycn.github.io entwickelt wurde, und ihr Hauptmerkmal ist "This extension makes better use of Google Scholar for scholars.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Collegiate Scholar Link-Erweiterungs-CRX-Datei herunterladen

Laden Sie Collegiate Scholar Link-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Collegiate Scholar Link Collegiate Scholar Link
ID lmammanhmfopafiiopefcedjiffdogdf
Offizielle URL https://chrome.google.com/webstore/detail/collegiate-scholar-link/lmammanhmfopafiiopefcedjiffdogdf
Beschreibung This extension makes better use of Google Scholar for scholars.
Dateigröße 206 KB
Installationsanzahl 320
Aktuelle Version 0.0.7
Letztes Update 2016-09-14
Veröffentlichungsdatum 2016-09-14
Entwickler http://joeycn.github.io
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://joeycn.github.io/cslink
Hilfeseite URL https://www.facebook.com/CollegiateScholarLink/
Unterstützte Sprachen 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
}