forked from defmethodinc/just-not-sorry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
51 lines (51 loc) · 1.31 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
{
"manifest_version": 2,
"name": "Just Not Sorry -- the Chrome extension",
"short_name": "JustNotSorry",
"author": "Steve Brudz, Manish Kakwani, Tami Reiss, and Eric Tillberg of Def Method",
"version": "2.3.0",
"version_name": "2.3.0",
"description": "A Chrome extension that warns you when you write emails using words which undermine your message",
"icons": {
"16": "img/JustNotSorry-16.png",
"48": "img/JustNotSorry-48.png",
"128": "img/JustNotSorry-128.png"
},
"content_scripts": [
{
"matches": [
"https://mail.google.com/*",
"https://outlook.office.com/*",
"https://outlook.live.com/*",
"https://outlook.office365.com/*"
],
"css": ["./just-not-sorry.css"],
"js": ["bundle.js"]
}
],
"background": {
"scripts": [
"background/google-analytics-bundle.js",
"background/background.js"
],
"persistent": false
},
"page_action": {
"default_icon": {
"19": "img/JustNotSorry-19.png",
"38": "img/JustNotSorry-38.png"
},
"default_title": "Just Not Sorry"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"web_accessible_resources": [],
"permissions": [
"https://www.google-analytics.com/",
"storage",
"declarativeContent",
"notifications"
]
}