EZProxy Redirect

Quickly reload pages through your library's EZProxy.

EZProxy Redirect क्या है?

EZProxy Redirect https://libproxy-db.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly reload pages through your library's EZProxy."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में EZProxy Redirect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}