-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
21 lines (21 loc) · 887 Bytes
/
manifest.json
File metadata and controls
21 lines (21 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"manifest_version": 2,
"name": "LMSGrader",
"description": "Makes grading easier on LMS",
"version": "1.0",
"permissions": [
"https://lms.alphastar.academy/course/view.php?id=*",
"https://lms.alphastar.academy/mod/assign/view.php?id=*",
"https://lms.alphastar.academy/mod/assign/view.php?id=*&action=grading",
"https://lms.alphastar.academy/mod/assign/view.php?action=grading&id=*&page=*"
],
"content_scripts" : [{
"matches" : [ "https://lms.alphastar.academy/course/view.php?id=*", "https://lms.alphastar.academy/mod/assign/view.php?id=*", "https://lms.alphastar.academy/mod/assign/view.php?id=*&action=grading", "https://lms.alphastar.academy/mod/assign/view.php?action=grading&id=*&page=*" ],
"js" : ["starter.js"]
}],
"web_accessible_resources": ["script.js"],
"background": {
"persistent": false,
"scripts": ["script.js"]
}
}