-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
44 lines (44 loc) · 1.28 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
{
"name": "__MSG_extensionName__",
"author": "Talis Education Limited",
"description":"__MSG_description__",
"version": "__VERSION__",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png",
"176": "images/icon176.png"
},
"background": {
"page": "background.html",
"persistent": false
},
"permissions": [
"activeTab", "storage", "https://talis-public.talis.com/*"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"options_page": "options.html",
"browser_action": {
"default_title": "__MSG_browserActionTitle__",
"default_icon": {
"16": "images/icon16.png",
"20": "images/icon20.png",
"24": "images/icon24.png",
"25": "images/icon25.png",
"30": "images/icon30.png",
"32": "images/icon32.png",
"40": "images/icon40.png"
}
},
"content_scripts": [
{
"matches": ["https://rl.talis.com/*", "https://rl.ca.talis.com/*", "https://life.rl.talis.local/*", "https://*.rl.talis.com/*"],
"css": ["css/banner.css"]
}
],
"default_locale": "en",
"manifest_version": 2
}