-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
51 lines (48 loc) · 1.11 KB
/
manifest.json
File metadata and controls
51 lines (48 loc) · 1.11 KB
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
{
"manifest_version": 2,
"name": "Blackboard Test Grader",
"description": "Adds button to automatically grade free response boxes of tests in blackboard.",
"author": "Matt Lyons",
"version": "1.0.0",
"homepage_url": "http://matt-lyons.com",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png",
"421": "icons/icon421.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src/bg/background.js"
],
"persistent": false
},
"permissions": [
"notifications", //Display notifications and progress alerts
"https://myasucourses.asu.edu/*", //Blackboard URL
"tabs" //For messaging and focus tab when click notification
],
"content_scripts": [
{
"matches": [
"https://myasucourses.asu.edu/*"
],
"js": [
"js/jquery/jquery.min.js",
"js/math.min.js",
"js/stemmer.js",
"src/contentscripts/inject.js",
"src/contentscripts/gradingMenu.js",
"src/contentscripts/gradeTest.js",
"src/contentscripts/gradeCenter.js"
],
"all_frames": true,
"run_at": "document_end"
}
],
"web_accessible_resources": [
"src/inject/*",
"js/*"
]
}