Quick SSO Proxy

Reload page using a single sign-on proxy.

Quick SSO Proxyคืออะไร?

Quick SSO Proxy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://evanott.com และคุณลักษณะหลักของมันคือ "Reload page using a single sign-on proxy."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quick SSO Proxy

ดาวน์โหลดไฟล์ส่วนขยาย Quick SSO Proxy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Created in order to make using the University of Texas at Austin's library proxy system simple. The default settings use UT-Austin's ezproxy system, though the extension should work for any similar system. This can be used by UT-Austin students to load journal articles easy when off campus.

The extension reloads a page, say http://mywebsite.com/mypage as http://mywebsite.com./mypage

Use the extension options to change the proxy address.

This work is not official for UT-Austin in any way, shape, or form. I just use their proxy a lot and wanted a fast way of loading journal articles at home for my studies.

v1.2: Still defaults to http, but adds saved option for http, https, or pass-through protocol.
v1.1: Now defaults to http (instead of https) for all sites (needed for UT's system).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Quick SSO Proxy Quick SSO Proxy
ID mmcbgcnjjmfiamkdpmjakfclbimdkoag
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quick-sso-proxy/mmcbgcnjjmfiamkdpmjakfclbimdkoag
คำอธิบาย Reload page using a single sign-on proxy.
ขนาดไฟล์ 17.13 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2017-09-12
วันที่เผยแพร่ 2017-09-11
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://evanott.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.evanott.com/proxy.html
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick SSO Proxy",
    "description": "Reload page using a single sign-on proxy.",
    "version": "1.2",
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_title": "Use proxy on this site",
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            },
            "description": "Reload page using Quick SSO Proxy"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}