forked from joelthorner/TLmanaGer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
132 lines (132 loc) · 2.65 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "__MSG_appName__",
"version": "2.1.12",
"manifest_version": 2,
"description": "__MSG_appDesc__",
"homepage_url": "https://github.com/joelthorner/TLmanaGer",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"js/background.js"
],
"persistent": true
},
"options_page": "src/options/index.html",
"browser_action": {
"default_icon": "icons/icon32.png",
"default_title": "TLmanaGer",
"default_popup": "src/popup/index.html"
},
"permissions": [
"chrome://favicon/",
"clipboardRead",
"clipboardWrite",
"contentSettings",
"contextMenus",
"cookies",
"history",
"bookmarks",
"management",
"notifications",
"tabs",
"storage",
"<all_urls>"
],
"web_accessible_resources": [
"js/*",
"img/*",
"fonts/*"
],
"externally_connectable": {
"matches": [
"*://localhost/*",
"*://joelthorner.github.io/emilio-generator/"
]
},
"content_scripts": [
{
"matches": [
"*://fontawesome.com/icons/*"
],
"exclude_matches": [
"*://fontawesome.com/icons?d=gallery"
],
"js": [
"js/libs/jquery-3.3.1.min.js",
"js/inject/steal-font-awesome.js"
]
},
{
"matches": [
"*://*.igd.production/*"
],
"exclude_matches": [
"*://adm.igd.production/*",
"*://fluiddoc.igd.production/*"
],
"js": [
"js/libs/jquery-3.3.1.min.js",
"js/inject/dev-flush-cfm.js"
]
},
{
"matches": [
"*://8x-hk.logicommerce.net/*",
"*://8x-os.logicommerce.net/*",
"*://8x.logicommerce.net/*",
"*://8x.logicommerce.cn/*",
"*://adm.igd.production/*",
"*://adm.igd.pre.production/*"
],
"js": [
"js/libs/jquery-3.3.1.min.js",
"js/inject/background-lc.js",
"js/inject/pages-grid-lc.js",
"js/inject/big-controls-lc.js",
"js/inject/lc-holidays.js",
"js/inject/dev-lc-bar.js"
],
"css": [
"css/inject/big-controls-ls.css",
"css/inject/lc-holidays.css",
"css/inject/dev-lc-bar.css"
]
},
{
"matches": [
"*://*.logicommerce.net/*",
"*://*.logicommerce.hk/*",
"*://*.logicommerce.cn/*",
"*://*.igd.production/*",
"*://*.igd.pre.production/*"
],
"exclude_matches": [
"*://8x-hk.logicommerce.net/*",
"*://8x-os.logicommerce.net/*",
"*://8x.logicommerce.net/*",
"*://8x.logicommerce.cn/*"
],
"js": [
"js/inject/force-forceview.js"
]
},
{
"matches": [
"<all_urls>"
],
"js": [
"js/libs/jquery-3.3.1.min.js",
"js/libs/js.cookie.js",
"js/actions/load-guide-lines.js"
],
"run_at": "document_start",
"all_frames": true
}
]
}