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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}