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ファイルをダウンロード

EZProxy Redirect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}