RUG Authentication Assistant
Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG)
RUG Authentication Assistantとは何ですか?
RUG Authentication Assistantはhttps://sites.google.com/view/rug-authentication-assistantによって開発されたChromeの拡張機能で、その主な機能は「Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG)」です。
拡張機能のスクリーンショット
RUG Authentication Assistant拡張機能のCRXファイルをダウンロード
RUG Authentication Assistant拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This Chromium extension allows you to generate 2-Factor-Authentication codes directly in your browser. It can also automatically insert the generated 2FA code while logging in to the University of Groningen's online portal, Brightspace, so that you don't have to enter them yourself. This browser extension is exclusively for the use of RUG staff and students!
拡張機能の基本情報
名前 | RUG Authentication Assistant |
ID | ajdbmhccdieijfeblgacbgjdlmbcoilf |
公式URL | https://chromewebstore.google.com/detail/rug-authentication-assist/ajdbmhccdieijfeblgacbgjdlmbcoilf |
説明 | Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG) |
ファイルサイズ | 329 KB |
インストール数 | 83 |
現在のバージョン | 0.1.1 |
最終更新日 | 2023-11-17 |
公開日 | 2023-02-27 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | https://sites.google.com/view/rug-authentication-assistant |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en,ro |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_app_title__", "version": "0.1.1", "description": "__MSG_extension_description__", "default_locale": "en", "icons": { "32": "icons\/rug-32.png", "48": "icons\/rug-48.png", "96": "icons\/rug-96.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "__MSG_popup_title__", "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.rug.nl\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ] } |