OpenU-AutoLogin
Auto login to Open University of Israel site
Qu'est-ce que OpenU-AutoLogin ?
OpenU-AutoLogin est une extension Chrome développée par Unknown, et sa fonction principale est "Auto login to Open University of Israel site".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension OpenU-AutoLogin
Téléchargez les fichiers d'extension OpenU-AutoLogin au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | OpenU-AutoLogin |
ID | bmhmljdpfgmcobbfhdbgaojhgiecnjde |
URL Officiel | https://chromewebstore.google.com/detail/openu-autologin/bmhmljdpfgmcobbfhdbgaojhgiecnjde |
Description | Auto login to Open University of Israel site |
Taille du Fichier | 54.95 KB |
Nombre d'Installations | 38 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2018-10-18 |
Date de Publication | 2018-10-18 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Chamuelm/OpenU-AutoLogin |
Langues Prises en Charge | 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" ] } ] } |