Georgia Tech Scholar
Allows chrome to save your GT password, and provides easy access to online journal papers
Georgia Tech Scholar là gì?
Georgia Tech Scholar là một tiện ích mở rộng Chrome được phát triển bởi Felipe Salazar, và tính năng chính của nó là "Allows chrome to save your GT password, and provides easy access to online journal papers".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Georgia Tech Scholar
Tải xuống các tệp mở rộng Georgia Tech Scholar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | apmephkccjilhccokdgiimomcmmlickg |
URL Chính Thức | https://chrome.google.com/webstore/detail/georgia-tech-scholar/apmephkccjilhccokdgiimomcmmlickg |
Mô tả | Allows chrome to save your GT password, and provides easy access to online journal papers |
Kích Thước Tệp | 52.72 KB |
Số Lần Cài Đặt | 225 |
Phiên Bản Hiện Tại | 2.0.3 |
Cập Nhật Lần Cuối | 2013-08-19 |
Ngày Phát Hành | 2013-08-19 |
Đánh Giá | 4.56/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | Felipe Salazar |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | http://www.prism.gatech.edu/~fsalazar3/contact.html |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |