Skip to content

Commit 2b347cb

Browse files
authored
Multi-client support (#62)
1 parent 8d7eb72 commit 2b347cb

12 files changed

+469
-249
lines changed

src/manifest.json

Lines changed: 29 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,47 @@
22
"manifest_version": 3,
33
"name": "Scrum Helper Extension",
44
"version": "1.0",
5-
"description": "This extension helps in writing Scrums in Google groups, particularly related to FOSSASIA. ",
5+
"description": "This extension helps in writing Scrums in Google Groups, particularly related to FOSSASIA.",
66
"action": {
77
"default_popup": "popup.html",
8-
"default_title": "SCRUM Helper",
9-
"default_icon": {
10-
"96": "icons/icon.png",
11-
"48": "icons/icon.png"
12-
}
8+
"default_title": "SCRUM Helper"
9+
},
10+
"icons": {
11+
"96": "icons/icon.png",
12+
"48": "icons/icon.png"
1313
},
1414
"background": {
1515
"service_worker": "scripts/background.js"
1616
},
1717
"content_scripts": [
1818
{
19-
"matches": ["*://groups.google.com/forum/*", "*://groups.google.com/g/*"],
20-
"js": ["scripts/jquery-3.2.1.min.js", "scripts/scrumHelper.js"]
19+
"matches": [
20+
"*://groups.google.com/forum/*",
21+
"*://groups.google.com/g/*",
22+
"*://mail.google.com/*",
23+
"*://outlook.live.com/*",
24+
"*://outlook.office.com/*",
25+
"*://mail.yahoo.com/*"
26+
],
27+
"js": ["scripts/jquery-3.2.1.min.js", "scripts/scrumHelper.js", "scripts/emailClientAdapter.js"]
2128
}
2229
],
2330

2431
"content_security_policy": {
2532
"extension_pages": "script-src 'self'; object-src 'self';"
2633
},
27-
"optional_host_permissions": ["https://*/*", "http://*/*", "<all_urls>"],
28-
29-
"permissions": ["tabs", "storage", "activeTab", "notifications"]
34+
"permissions": [
35+
"tabs",
36+
"storage",
37+
"activeTab",
38+
"notifications"
39+
],
40+
"host_permissions": [
41+
"<all_urls>",
42+
"*://*.google.com/*",
43+
"*://*.outlook.live.com/*",
44+
"*://*.office.com/*",
45+
"*://*.yahoo.com/*",
46+
"https://api.github.com/*"
47+
]
3048
}

src/materialize/css/all.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
206 KB
Binary file not shown.
116 KB
Binary file not shown.
66.5 KB
Binary file not shown.
24.9 KB
Binary file not shown.
416 KB
Binary file not shown.
155 KB
Binary file not shown.
10.6 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)