forked from DRAGONMANU/chrome_IIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
61 lines (57 loc) · 1.29 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
{
"manifest_version": 2,
"name": "Plugin for IITD Students",
"description": "This extension will assist students of IITD in their daily life ;)",
"version": "0.9",
"browser_action": {
"default_icon": "ico.png",
"default_title": "Click me to open",
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": ["moodle.js"],
"matches": ["https://moodle.iitd.ac.in/login/index.php"]
},
{
"js": ["webmail.js"],
"matches": ["https://webmail.iitd.ernet.in/roundcube/*"]
},
{
"js": ["webmail.js"],
"matches": ["https://webmail.iitd.ac.in/roundcube/*"]
},
{
"js": ["kerberos.js"],
"matches": ["https://proxy22.iitd.ernet.in/cgi-bin/proxy.cgi*"]
},
{
"js": ["kerberos.js"],
"matches": ["https://proxy62.iitd.ernet.in/cgi-bin/proxy.cgi*"]
},
{
"js": ["oauth.js"],
"matches": ["https://oauth.iitd.ac.in/*"]
}
],
"background": {
"page": "background.html"
},
"icons": {
"64" : "iitd.png",
"32" : "ico.png",
"16" : "iitd.png",
"128" : "iitd.png"
},
"permissions": [
"storage",
"notifications",
"tabs"
],
"applications":{
"gecko":{
"id": "nouser@nomail.com"
}
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}