Cam Moodle Auto Login

Automatically relogs you into moodle, after session timeout

Cam Moodle Auto Loginとは何ですか?

Cam Moodle Auto LoginはLakeeによって開発されたChromeの拡張機能で、その主な機能は「Automatically relogs you into moodle, after session timeout」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Cam Moodle Auto Login拡張機能のCRXファイルをダウンロード

Cam Moodle Auto Login拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ---
UPDATE 2
- Allowed it to work on the new legacy raven url "https://legacy.raven.cam.ac.uk/auth/*"
---
UPDATES:
- Fixed so it works with the new raven auth flow
- Auto logins on all raven prompts (not just moodle)
- You can now use your own password manager!!!
---

You probably find it annoying that Moodle session timeouts (logging you out) way too quickly. This simple extension aims to eradicate this daily annoyance by automatically logging you back into Moodle through Raven.

To see a guide on how to use it, and also how your data is used, please go and read the README at https://github.com/LakeeSiv/cam-moodle-auto-login#readme 
If you can't be asked to do that, then I'll put the TLDR here.

Your data is encoded (unlike other extensions like AutoFill) and is stored *locally* on your hard drive, it is never sent to any external places!! You have the option to wipe any data that is collected by this extension by pressing the "Removed Stored Data" button.

Alternatively you can use your own password manager to autofill and we will have getting to the login page and clicking the login buttons.                    

拡張機能の基本情報

名前 Cam Moodle Auto Login Cam Moodle Auto Login
ID leaelpeocjmngdhgkeldeopdpjcilmme
公式URL https://chromewebstore.google.com/detail/cam-moodle-auto-login/leaelpeocjmngdhgkeldeopdpjcilmme
説明 Automatically relogs you into moodle, after session timeout
ファイルサイズ 192 KB
インストール数 122
現在のバージョン 2.2.0
最終更新日 2023-09-07
公開日 2021-11-19
評価 5.00/5 合計 3 レビュー
開発者 Lakee
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/LakeeSiv/cam-moodle-auto-login#readme
ヘルプページのURL https://github.com/LakeeSiv/cam-moodle-auto-login/issues
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cam Moodle Auto Login",
    "description": "Automatically relogs you into moodle, after session timeout",
    "manifest_version": 2,
    "version": "2.2.0",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.vle.cam.ac.uk\/login\/*",
                "https:\/\/raven.cam.ac.uk\/auth\/*",
                "https:\/\/legacy.raven.cam.ac.uk\/auth\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}