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によって開発されたChromeの拡張機能で、その主な機能は「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)拡張機能のCRXファイルをダウンロード
Kotnet Login (support for new Login Screen)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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"
} | |