AssignTrack@HKU

Automatically keeps a track of assignments of students at the university of Hong Kong

什么是AssignTrack@HKU?

AssignTrack@HKU是由AssignTrack开发的Chrome扩展程序,该扩展的主要功能是“Automatically keeps a track of assignments of students at the university of Hong Kong”。

扩展截图

screenshot

下载AssignTrack@HKU扩展crx文件

下载AssignTrack@HKU扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The extension is made for the students and staffs of the university of Hong Kong. Other people can also use it as all the features can also be performed manually.The chrome extension automatically reads the assignment details from the university portal assignment page of the user and shows the remaining time to the deadline. On submission, the corresponding assignment is automatically removed from duelist and shifted to the completed list. When the deadline for an un-submitted assignment starts to approach, the assignment starts to blink to remind the user.                    

扩展基本信息

名称 AssignTrack@HKU AssignTrack@HKU
ID gglagadhedjjhdedopgjkaboikmhneeb
官方URL https://chromewebstore.google.com/detail/assigntrackhku/gglagadhedjjhdedopgjkaboikmhneeb
简介 Automatically keeps a track of assignments of students at the university of Hong Kong
文件大小 67.78 KB
安装次数 237
当前版本 3.1.9
更新时间 2018-09-13
上架时间 2018-09-13
评分 4.67/5 共6次评分
开发者 AssignTrack
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AssignTrack@HKU",
    "description": "Automatically keeps a track of assignments of students at the university of Hong Kong ",
    "version": "3.1.9",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/moodle.hku.hk\/mod\/assign\/view.php?*",
                "http:\/\/moodle.hku.hk\/mod\/assign\/view.php?*"
            ],
            "js": [
                "AssignmentScrape.js"
            ]
        },
        {
            "matches": [
                "http:\/\/moodle.hku.hk\/mod\/turnitintooltwo\/*",
                "https:\/\/moodle.hku.hk\/mod\/turnitintooltwo\/*"
            ],
            "js": [
                "TurnitinAssignmentScrape.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "notifications"
    ]
}