AssignTrack@HKU
Automatically keeps a track of assignments of students at the university of Hong Kong
What is AssignTrack@HKU?
AssignTrack@HKU is a Chrome extension developed by AssignTrack, and its main feature is "Automatically keeps a track of assignments of students at the university of Hong Kong".
Extension Screenshots
Download AssignTrack@HKU Extension CRX File
Download AssignTrack@HKU extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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. Extension Basic Information
| Name | |
| ID | gglagadhedjjhdedopgjkaboikmhneeb |
| Official URL | https://chromewebstore.google.com/detail/assigntrackhku/gglagadhedjjhdedopgjkaboikmhneeb |
| Description | Automatically keeps a track of assignments of students at the university of Hong Kong |
| File Size | 67.78 KB |
| Installation Count | 237 |
| Current Version | 3.1.9 |
| Last Updated | 2018-09-13 |
| Publish Date | 2018-09-13 |
| Rating | 4.67/5 Total 6 Ratings |
| Developer | AssignTrack |
| Payment Type | free |
| Supported Languages | 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"
]
} | |