OpenU-AutoLogin
Auto login to Open University of Israel site
O que é OpenU-AutoLogin?
OpenU-AutoLogin é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Auto login to Open University of Israel site".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão OpenU-AutoLogin
Baixe arquivos de extensão OpenU-AutoLogin no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 Informações Básicas da Extensão
| Nome | |
| ID | bmhmljdpfgmcobbfhdbgaojhgiecnjde |
| URL Oficial | https://chromewebstore.google.com/detail/openu-autologin/bmhmljdpfgmcobbfhdbgaojhgiecnjde |
| Descrição | Auto login to Open University of Israel site |
| Tamanho do Arquivo | 54.95 KB |
| Contagem de Instalações | 38 |
| Versão Atual | 1.0 |
| Última Atualização | 2018-10-18 |
| Data de Publicação | 2018-10-18 |
| Classificação | 5.00/5 Total de 1 Avaliações |
| Desenvolvedor | Unknown |
| Tipo de Pagamento | free |
| Site da Extensão | https://github.com/Chamuelm/OpenU-AutoLogin |
| Idiomas Suportados | 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"
]
}
]
} | |