-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 919 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
37
38
39
40
41
42
43
44
{
"manifest_version": 2,
"name": "SMS Tsu Beautifier",
"description": "ალამაზებს sms.tsu.ge-ს ცხრილს",
"author": "Alex Lomia",
"version": "1.0.1",
"icons": {
"48": "icons/feelsGoodGuy48.png",
"128": "icons/feelsGoodGuy128.png"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"http://sms.tsu.ge/sms/Students/Cxrilebi.aspx"
],
"css": [
"css/fixFlicker.css"
],
"run_at": "document_start"
},
{
"matches": [
"http://sms.tsu.ge/sms/Students/Cxrilebi.aspx"
],
"js": [
"js/jquery-2.2.1.min.js",
"js/3.3.6_bootstrap.min.js",
"js/scheduleParser.js",
"js/schedulePage.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"css/*",
"js/*",
"img/*",
"html/*"
]
}