Skip to content

Commit 797a78f

Browse files
author
“[HongPhuc
committed
add new iconand improve documentation
1 parent 3dd1ca9 commit 797a78f

File tree

6 files changed

+78
-12
lines changed

6 files changed

+78
-12
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11

22
# SCRUM Helper
33

4-
**SCRUM Helper** is a Chrome extension designed to simplify writing scrums in Google Groups for FOSSASIA projects. By adding your GitHub username, date range, and other options, it automatically fetches your PRs, Issues, and reviewed PRs via the GitHub API and pre-fills the scrum. You can then edit the scrum to fit your needs.
4+
**SCRUM Helper** Scrum Helper is a Chrome extension that simplifies writing development reports by auto-filling content based on your Git activity. Just enter your GitHub username, select a date range, and choose your preferences, the extension automatically fetches your commits, pull requests, issues, and code reviews via the GitHub API and generates a pre-filled report that you can edit as needed. While currently focused on Git-based workflows, Scrum Helper is designed to expand to other platforms in the future.
55

66
![SCRUMLOGO](docs/images/scrumhelper-png.png)
77

88
## Features
99

10-
- Fetches your GitHub PRs, Issues, and reviewed PRs
11-
- Auto-generates scrum updates
12-
- Supports Google Groups, Gmail, Yahoo, and Outlook compose windows
10+
- Automatically fetches your Git activity, including commits, pull requests, issues, and code reviews.
11+
- Currently supports GitHub, with plans to expand to other platforms
12+
- Generates editable scrum updates based on your selected date range
13+
- Integrates directly with compose windows in Google Groups, Gmail, Yahoo Mail, and Outlook
1314

1415
## How to install
1516

docs/images/icon128x128.png

24.4 KB
Loading

docs/images/icon128x128.svg

Lines changed: 65 additions & 0 deletions
Loading

docs/images/old_icon.png

3.83 KB
Loading

src/icons/icon.png

20.5 KB
Loading

src/manifest.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"manifest_version": 3,
3-
"name": "Scrum Helper Extension",
3+
"name": "Scrum Helper",
44
"version": "1.0",
5-
"description": "This extension helps in writing Scrums in Google Groups, particularly related to FOSSASIA.",
5+
"description": "This extension simplifies writing development reports by auto-filling content based on your Git activity",
66
"action": {
77
"default_popup": "popup.html",
88
"default_title": "SCRUM Helper"
@@ -17,14 +17,14 @@
1717
"content_scripts": [
1818
{
1919
"matches": [
20-
"*://groups.google.com/forum/*",
20+
"*://groups.google.com/forum/*",
2121
"*://groups.google.com/g/*",
22-
"*://mail.google.com/*",
23-
"*://outlook.live.com/*",
24-
"*://outlook.office.com/*",
25-
"*://mail.yahoo.com/*"
22+
"*://mail.google.com/*",
23+
"*://outlook.live.com/*",
24+
"*://outlook.office.com/*",
25+
"*://mail.yahoo.com/*"
2626
],
27-
"js": ["scripts/jquery-3.2.1.min.js", "scripts/emailClientAdapter.js", "scripts/scrumHelper.js"]
27+
"js": ["scripts/jquery-3.2.1.min.js", "scripts/emailClientAdapter.js", "scripts/scrumHelper.js"]
2828
}
2929
],
3030

0 commit comments

Comments
 (0)