forked from Chaloemphisit/KMITL-Study-Table-Chrome-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
30 lines (30 loc) · 931 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
{
"manifest_version": 2,
"name": "KMITL Study Table",
"version": "1.1.3",
"author": "Chaloemphisit Sirichai",
"description": "Chrome extension to re-render user interface for KMITL Study Table page. It is designed base on old design adding some features",
"icons": {
"128": "icons/icon128.png",
"48": "icons/icon48.png",
"32": "icons/icon32.png",
"16": "icons/icon16.png"
},
"content_scripts": [
{
"css": [
"/assets/css/styles.css"
],
"js": [
"/assets/vendor/jquery/dist/jquery.min.js",
"content.js"
],
"matches": [
"http://www.reg.kmitl.ac.th/u_student/report_studytable_show.php*",
"http://www2.reg.kmitl.ac.th/u_student/report_studytable_show.php*",
"http://www3.reg.kmitl.ac.th/u_student/report_studytable_show.php*",
"http://www4.reg.kmitl.ac.th/u_student/report_studytable_show.php*"
]
}
]
}