AssignTrack@HKU

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

O que é AssignTrack@HKU?

AssignTrack@HKU é uma extensão do Chrome desenvolvida por AssignTrack, e sua principal característica é "Automatically keeps a track of assignments of students at the university of Hong Kong".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AssignTrack@HKU

Baixe arquivos de extensão AssignTrack@HKU no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome AssignTrack@HKU AssignTrack@HKU
ID gglagadhedjjhdedopgjkaboikmhneeb
URL Oficial https://chromewebstore.google.com/detail/assigntrackhku/gglagadhedjjhdedopgjkaboikmhneeb
Descrição Automatically keeps a track of assignments of students at the university of Hong Kong
Tamanho do Arquivo 67.78 KB
Contagem de Instalações 237
Versão Atual 3.1.9
Última Atualização 2018-09-13
Data de Publicação 2018-09-13
Classificação 4.67/5 Total de 6 Avaliações
Desenvolvedor AssignTrack
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}