-
Notifications
You must be signed in to change notification settings - Fork 37
/
manifest.json
42 lines (42 loc) · 1.13 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
{
"manifest_version": 3,
"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.5.3",
"version_name": "2.5.3",
"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": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"19": "img/JustNotSorry-19.png",
"38": "img/JustNotSorry-38.png"
},
"default_title": "Just Not Sorry"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"web_accessible_resources": [],
"permissions": ["notifications"]
}