-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
38 lines (38 loc) · 1.8 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
{
"manifest_version": 2,
"name": "iSAMS XLS Reports to Sheets",
"short_name": "iSAMS Sheets",
"description": "This extension allows iSAMS lists to be directly opened into a browser window (rather than downloaded)",
"version": "1.1.1",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": ["tabs", "https://*.isams.cloud/*"],
"content_scripts" : [
{
"matches" : [
"https://*.isams.cloud/modules/teachingmanager/wizards/listswizard*",
"https://*.isams.cloud/legacy/modules/teachingmanager/wizards/listswizard*",
"https://*.isams.cloud/Legacy/system/common/nicedownload*",
"https://*.isams.cloud/modules/timetablemanager/wizards/spreadsheetwizard*",
"https://*.isams.cloud/modules/schoolmanagement/wizard/schoolwizard*",
"https://*.isams.cloud/modules/examinationsmanager/results/reports/gradematrix*",
"https://*.isams.cloud/modules/examinationsmanager/results/reports/totalsmatrix*",
"https://*.isams.cloud/legacy/system/framework/desktop.asp",
"https://*.isams.cloud/modules/dailybulletin/bulletin/bulletinlist*",
"https://*.isams.cloud/legacy/system/dashboard*",
"https://*.isams.cloud/modules/pupilprofiles/profile/index*",
"https://*.isams.cloud/modules/pupilprofiles/search/index.asp",
"https://*.isams.cloud/modules/pupilprofiles/pupilprofiles.asp",
"https://*.isams.cloud/modules/senmanager/register/list.asp*"
],
"all_frames": true,
"js" : [
"script.js"
]
}
],
"web_accessible_resources": ["open.js", "FileSaver.js"]
}