-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
76 lines (76 loc) · 2.86 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "Blackboard Instructor Enhancements",
"version": "0.3.7",
"manifest_version": 2,
"description": "Blackboard Enhancements for Instructors to improve the UI",
"homepage_url": "https://github.com/Niddrym/BlackboardInstructorEnhancements",
"author": "Franco Iacobacci",
"icons":{
"128":"icons/128.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": ["*://*/webapps/gradebook/do/instructor/enterGradeCenter*","*://*/webapps/gradebook/do/instructor/viewSpreadsheet2*","*://*/webapps/gradebook/do/instructor/deleteItem*"],
"all_frames": true,
"js": ["browser-polyfill.js","GradeCenterTweak.js"]
},
{
"run_at": "document_end",
"matches": ["*://*/webapps/discussionboard/do/message*action=collect_forward*"],
"all_frames": true,
"js": ["browser-polyfill.js","DiscussionBoardTweak.js"]
},
{
"run_at": "document_end",
"matches": ["*://*/webapps/blackboard/execute/userManager*"],
"all_frames": true,
"js": ["browser-polyfill.js","disableSelectedUsers.js"]
},
{
"run_at": "document_end",
"matches": ["*://*/webapps/assessment/do/gradeTest*","*://*/webapps/assignment/gradeAssignment*"],
"all_frames": true,
"js": ["browser-polyfill.js","GradeAttempt.js"]
},
{
"run_at": "document_end",
"matches": ["*://*/webapps/gradebook/do/instructor/viewGradeDetails*"],
"all_frames": true,
"js": ["browser-polyfill.js","GradeDetails.js"]
},
{
"run_at": "document_end",
"matches": ["*://*/webapps/blackboard/content/copyItem.jsp*"],
"all_frames": true,
"js": ["browser-polyfill.js","CopyItem.js"]
}
],
"permissions": [
"activeTab",
"*://*/webapps/gradebook/do/instructor/downloadAssignment*",
"*://*/webapps/blackboard/execute/userManager*",
"*://*/webapps/gradebook/do/instructor/viewNeedsGrading*",
"*://*/webapps/assessment/do/authoring/modifyAssessment*method=modifyAssessment*",
"*://*/webapps/vtbe-tinymce/javascript/vtbeTinyMce.js*",
"*://*/webapps/assessment/do/grade/viewQuestions*",
"webRequest",
"webRequestBlocking",
"storage"
],
"background": {
"scripts": ["browser-polyfill.js","background.js"],
"persistent": true
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"browser_action": {
"browser_style": true,
"default_icon": {},
"default_title": "Blackboard Instructor Enhancements",
"default_popup": "options.html"
},
"web_accessible_resources": ["settings.json","browser-polyfill.js.map"]
}