forked from OpenLake/iitbh-cgpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 978 Bytes
/
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
{
"name": "IITBh CGPA",
"version": "2.4",
"description": "Calculate CGPA directly from AIMS Portal. Click on the extension logo when on AIMS portal's courses page to see your CGPA.",
"permissions": ["activeTab", "declarativeContent"],
"page_action": {
"default_popup": "popup.html",
"show_matches": [
"*://aimsportal.iitbhilai.ac.in/iitbhAims/courseReg/myCrsHistoryPage*"
],
"default_icon": {
"16": "images/16x16.png",
"32": "images/32x32.png",
"128": "images/128x128.png"
},
"default_title": "CGPA"
},
"background": {
"scripts": ["browser-polyfill.js", "background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*://aimsportal.iitbhilai.ac.in/iitbhAims/courseReg/myCrsHistoryPage*"
],
"js": ["browser-polyfill.js", "contentscript.js"]
}
],
"icons": {
"16": "images/16x16.png",
"32": "images/32x32.png",
"128": "images/128x128.png"
},
"manifest_version": 2
}