EZProxy Redirect

Quickly reload pages through your library's EZProxy.

EZProxy Redirect란 무엇입니까?

EZProxy Redirect은(는) https://libproxy-db.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly reload pages through your library's EZProxy."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

EZProxy Redirect 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Many universities use EZProxy to allow its students access to various online databases.  This extension adds a button to Chrome which allows for a quick way to reload the current page through your EZProxy system.

All it does is pass the URL to your library's EZProxy login URL.  For example:
    http://ieeexplore.ieee.org/
would change to:
    http://www.library.drexel.edu/cgi-bin/r.cgi?url=http://ieeexplore.ieee.org

Also, the code to this extension is available on GitHub: https://github.com/tom5760/chrome-ezproxy

This extension also uses the library proxy database at: https://libproxy-db.org/

Updates in the latest version:
* Update to Manifest v3
* Simultaneously publish Chrome & Firefox extension

Please let me know if you run into any problems by creating an issue on GitHub: https://github.com/tom5760/chrome-ezproxy                    

확장 프로그램 기본 정보

이름 EZProxy Redirect EZProxy Redirect
ID gfhnhcbpnnnlefhobdnmhenofhfnnfhi
공식 URL https://chromewebstore.google.com/detail/ezproxy-redirect/gfhnhcbpnnnlefhobdnmhenofhfnnfhi
설명 Quickly reload pages through your library's EZProxy.
파일 크기 40.57 KB
설치 횟수 26,442
현재 버전 22
최근 업데이트 2024-01-18
출시 날짜 2020-05-31
평점 4.60/5 총 62 개의 평점
개발자 https://libproxy-db.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tom5760/chrome-ezproxy
도움말 페이지 URL https://github.com/tom5760/chrome-ezproxy/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "EZProxy Redirect",
    "description": "Quickly reload pages through your library's EZProxy.",
    "version": "22",
    "author": "Tom Wambold ",
    "homepage_url": "https:\/\/github.com\/tom5760\/chrome-ezproxy",
    "background": {
        "type": "module",
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "optional_permissions": [
        "clipboardWrite",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/libproxy-db.org\/proxies.json"
    ],
    "commands": {
        "_execute_action": {
            "description": "Reload the current page through EZProxy."
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Reload through EZProxy"
    }
}