OpenU-AutoLogin

Auto login to Open University of Israel site

什麼是OpenU-AutoLogin?

OpenU-AutoLogin是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Auto login to Open University of Israel site”。

擴展截圖

screenshot

下載OpenU-AutoLogin擴展crx文件

下載OpenU-AutoLogin擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The university website is automatically logging off users inactive after 30 minutes and doesn't allow auto complete for the ID field so the students basically have to login every time they want to use it.

This extensions received login data from user and stores it unencrypted using the Storage API.
When reaching to the university website login page it automatically complete the data and send the form to login.

The data is saved unencrypted so using this extension is under your own responsibility.

This project is open sourced, you are welcomed to contribute its GitHub page:
https://github.com/Chamuelm/OpenU-AutoLogin                    

擴展基本資訊

名稱 OpenU-AutoLogin OpenU-AutoLogin
ID bmhmljdpfgmcobbfhdbgaojhgiecnjde
官方網址 https://chromewebstore.google.com/detail/openu-autologin/bmhmljdpfgmcobbfhdbgaojhgiecnjde
簡介 Auto login to Open University of Israel site
檔案大小 54.95 KB
安裝次數 38
目前版本 1.0
更新時間 2018-10-18
上架時間 2018-10-18
評分 5.00/5 共 1 次評分
開發者 Unknown
付費類型 free
擴展官網 https://github.com/Chamuelm/OpenU-AutoLogin
支援的語言 iw
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OpenU-AutoLogin",
    "version": "1.0",
    "description": "Auto login to Open University of Israel site",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "images\/icon_16x16.png",
        "32": "images\/icon_32x32.png",
        "48": "images\/icon_48x48.png",
        "128": "images\/icon_128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/icon_32x32.png"
    },
    "options_page": "options.html",
    "manifest_version": 2,
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/sso.apps.openu.ac.il\/login*",
                "https:\/\/sso.apps.openu.ac.il\/process\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}