manaba Enhanced for Tsukuba

Make your manaba a little bit more comfortable

manaba Enhanced for Tsukuba क्या है?

manaba Enhanced for Tsukuba Masaki Kobayashi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make your manaba a little bit more comfortable"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में manaba Enhanced for Tsukuba एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ** 対応大学 / Supported Univ. **

筑波大学 / University of Tsukuba


1. 締め切りまでの時間による課題一覧の色分け

赤: 期限まであと1日
黄: 期限まであと3日
緑: 期限まであと7日

2. レポート入力画面でのレポート自動保存

3. コースニュースやコンテンツの公開期限を強調表示

4. コースのモジュール別フィルタリング

5. ドラッグアンドドロップでのファイルアップロード

6. 外部リンククリック時の確認ダイアログ排除

7. 出席コードをResponで開く右クリックメニューを追加


1. Color assignments with colors according to the time remaining

Red: 1 day remaining
Yellow: 3 days remaining
Green: 7 days remaining

2. Auto-save report text

3. Highlight the publication deadline of course news and course contents

4. Filter of courses in mypage by terms/modules

5. Drag & Drop file upload

6. Remove the confirmation dialogue of external links

7. Add a context menu to open the attend code in Respon


** Disclaimer / 免責事項 ** 

This is an unofficial software and has nothing to do with the administration of the University of Tsukuba.
We will not be held responsible for any damages and troubles caused by this software.

これは大学非公式のソフトウェアであり、筑波大学とは無関係です
私達はこのソフトウェアを利用したことによるいかなる損害、トラブルに対する責任を負いません


This extension is open source. Suggestions and pull requests are welcomed!
https://github.com/mkobayashime/manaba-enhanced                    

एक्सटेंशन की मूल जानकारी

नाम manaba Enhanced for Tsukuba manaba Enhanced for Tsukuba
ID fldngcbchlbfgbccilklplmhljilhfch
आधिकारिक URL https://chromewebstore.google.com/detail/manaba-enhanced-for-tsuku/fldngcbchlbfgbccilklplmhljilhfch
विवरण Make your manaba a little bit more comfortable
फ़ाइल का आकार 63.21 KB
स्थापना संख्या 1,845
वर्तमान संस्करण 3.3.1
अंतिम अपडेट 2022-12-01
प्रकाशन तिथि 2020-06-30
रेटिंग 5.00/5 कुल 6 रेटिंग्स
डेवलपर Masaki Kobayashi
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mkobayashime/manaba-enhanced
समर्थित भाषाएँ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "manaba Enhanced for Tsukuba",
    "version": "3.3.1",
    "description": "Make your manaba a little bit more comfortable",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "downloads",
        "*:\/\/manaba.tsukuba.ac.jp\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/manaba.tsukuba.ac.jp\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentScript\/main.js"
            ]
        },
        {
            "matches": [
                "https:\/\/manaba.tsukuba.ac.jp\/*"
            ],
            "include_globs": [
                "https:\/\/manaba.tsukuba.ac.jp\/ct\/course_*_report_*"
            ],
            "js": [
                "contentScript\/reportTemplate.js"
            ]
        },
        {
            "matches": [
                "https:\/\/manaba.tsukuba.ac.jp\/*"
            ],
            "include_globs": [
                "https:\/\/manaba.tsukuba.ac.jp\/ct\/course_*_grade"
            ],
            "js": [
                "contentScript\/showRelativeGradesPosition.js"
            ]
        }
    ],
    "commands": {
        "manaba-enhanced:open-in-respon": {
            "suggested_key": {
                "default": "Alt+R"
            },
            "description": "Open selected Respon code in Respon"
        },
        "manaba-enhanced:open-assignments-page": {
            "description": "Open unsubmitted assignments page"
        }
    },
    "default_locale": "ja"
}