Better Waseda Moodle

Waseda Moodleの使い勝手を多少良くします。

Cos'è Better Waseda Moodle?

Better Waseda Moodle è un'estensione di Chrome sviluppata da mkihr-ojisan, e la sua funzione principale è "Waseda Moodleの使い勝手を多少良くします。".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Better Waseda Moodle

Scarica i file di estensione Better Waseda Moodle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        #### 主な機能 ####

-   自動ログイン
-   Moodle トップページに時間割表を表示
-   ツールバーのアイコンをクリックすると課題一覧を表示
-   スタイルの修正

すべての機能を見るには、拡張機能をインストールして設定ページを開いてください。                    

Informazioni di Base sull'Estensione

Nome Better Waseda Moodle Better Waseda Moodle
ID omijfabnmlifcmmghegpbmoieibfbmmj
URL Ufficiale https://chromewebstore.google.com/detail/better-waseda-moodle/omijfabnmlifcmmghegpbmoieibfbmmj
Descrizione Waseda Moodleの使い勝手を多少良くします。
Dimensione del File 707 KB
Conteggio Installazioni 943
Versione Corrente 0.6.5
Ultimo Aggiornamento 2023-05-02
Data di Pubblicazione 2021-05-14
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore mkihr-ojisan
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mkihr-ojisan/better-waseda-moodle
Lingue Supportate ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "0.6.5",
    "short_name": "__MSG_extension_shortname__",
    "author": "mkihr-ojisan",
    "homepage_url": "https:\/\/github.com\/mkihr-ojisan\/better-waseda-moodle",
    "manifest_version": 2,
    "default_locale": "ja",
    "incognito": "not_allowed",
    "icons": {
        "48": "res\/images\/icon-48.png",
        "128": "res\/images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/wsdmoodle.waseda.jp\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/login.microsoftonline.com\/b3865172-9887-4b3a-89ff-95a35b92f4c3\/*"
            ],
            "js": [
                "common\/auto-login\/auto-login-checkbox.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/*.waseda.jp\/*",
        "https:\/\/login.microsoftonline.com\/*",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "common\/auto-login\/auto-login-page.html",
        "res\/videos\/dummy-video.mp4",
        "block-xhr-requests\/inject.js",
        "fix-syllabus-link\/inject.js",
        "assignment-filename\/inject.js"
    ],
    "options_page": "options-page\/options-page.html",
    "browser_action": {
        "default_icon": {
            "48": "res\/images\/icon-48.png",
            "128": "res\/images\/icon-128.png"
        },
        "default_title": "__MSG_extension_name__",
        "default_popup": "popup\/popup.html"
    }
}