Kotnet Login (support for new Login Screen)
Kotnet Login is a browser extension that provides automatic login for websites of the KULeuven such as Kotnet, Toledo...
Kotnet Login (support for new Login Screen) क्या है?
Kotnet Login (support for new Login Screen) Vincent Uyttebroeck द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Kotnet Login is a browser extension that provides automatic login for websites of the KULeuven such as Kotnet, Toledo..."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Kotnet Login (support for new Login Screen) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Kotnet Login is a browser extension that provides automatic login for websites of the KULeuven such as Kotnet, Toledo...
This is the newest version, that works with the new Toledo environment. I did not create this, all credits go to the kind people at https://github.com/studentenraad/kotnetlogin-extension. I simply published this because the old version was outdated and didn't work with the new Toledo environment.
Update 2.0.8: Added support for the new KU Leuven Login Screen एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | cpbkchcoggikggfbfeicdmebipikjgco |
| आधिकारिक URL | https://chrome.google.com/webstore/detail/cpbkchcoggikggfbfeicdmebipikjgco |
| विवरण | Kotnet Login is a browser extension that provides automatic login for websites of the KULeuven such as Kotnet, Toledo... |
| फ़ाइल का आकार | 29.99 KB |
| स्थापना संख्या | 20 |
| वर्तमान संस्करण | 2.0.8 |
| अंतिम अपडेट | 2017-03-02 |
| प्रकाशन तिथि | 2017-03-02 |
| रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
| डेवलपर | Vincent Uyttebroeck |
| भुगतान के प्रकार | free |
| गोपनीयता नीति पृष्ठ URL | https://github.com/studentenraad/kotnetlogin-extension |
| समर्थित भाषाएँ | en,nl |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Kotnet Login (support for new Login Screen)",
"manifest_version": 2,
"version": "2.0.8",
"homepage_url": "https:\/\/github.com\/studentenraad\/kotnetlogin-extension",
"description": "__MSG_manifest_extensionDescription__",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Kotnet Login",
"default_icon": "icon\/icon_128.png"
},
"icons": {
"32": "icon\/icon_32.png",
"48": "icon\/icon_48.png",
"128": "icon\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.kuleuven.be\/*",
"*:\/\/*.groept.be\/*",
"*:\/\/limo.libis.be\/*",
"*:\/\/*.hubrussel.be\/*",
"*:\/\/*.katho.be\/*",
"*:\/\/*.khbo.be\/*",
"*:\/\/*.khleuven.be\/*",
"*:\/\/*.khlim.be\/*",
"*:\/\/*.lessius.eu\/*",
"*:\/\/*.wenk.be\/*",
"*:\/\/*.khk.be\/*",
"*:\/\/*.kahosl.be\/*",
"*:\/\/*.madfi2.be\/*"
],
"run_at": "document_idle",
"js": [
"init.js",
"login.js",
"redirect.js"
]
}
],
"options_page": "options.html",
"permissions": [
"tabs"
],
"default_locale": "en"
} | |