Skip to content

Commit 2381d17

Browse files
committed
easier rebase
Signed-off-by: Vedansh Saini <[email protected]>
1 parent 77c8887 commit 2381d17

File tree

3 files changed

+17
-18
lines changed

3 files changed

+17
-18
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "scrum_helper_extension",
3-
"version": "2.0.0",
4-
"description": "This extension helps in writing Scrums in google groups, particularly related to FOSSASIA. It converts a link to a github PR or an Issue to display the PR or the Issue's name along with the link to it.",
2+
"name": "scrum-helper",
3+
"version": "1.0.0",
4+
"description": "This extension simplifies writing development reports by auto-filling content based on your Git activity.",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/fossasia/scrum_helper.git"
@@ -16,8 +16,8 @@
1616
"google groups",
1717
"fossasia"
1818
],
19-
"author": "hkedia321",
20-
"license": "ISC",
19+
"author": "FOSSASIA",
20+
"license": "LGPL-2.1",
2121
"bugs": {
2222
"url": "https://github.com/fossasia/scrum_helper/issues"
2323
},
@@ -31,4 +31,4 @@
3131
"dependencies": {
3232
"@tailwindcss/cli": "^4.1.3"
3333
}
34-
}
34+
}

src/icons/icon.png

-519 KB
Loading

src/manifest.json

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"manifest_version": 3,
3-
"name": "Scrum Helper Extension",
4-
"version": "2.0",
5-
"description": "This extension helps in writing Scrums in Google Groups, particularly related to FOSSASIA.",
3+
"name": "Scrum Helper",
4+
"version": "1.0",
5+
"description": "This extension simplifies writing development reports by auto-filling content based on your Git activity.",
66
"action": {
77
"default_popup": "popup.html",
8-
"default_title": "SCRUM Helper"
8+
"default_title": "Scrum Helper"
99
},
1010
"icons": {
1111
"96": "icons/icon.png",
@@ -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

@@ -45,11 +45,10 @@
4545
"notifications"
4646
],
4747
"host_permissions": [
48-
"<all_urls>",
4948
"*://*.google.com/*",
5049
"*://*.outlook.live.com/*",
5150
"*://*.office.com/*",
5251
"*://*.yahoo.com/*",
5352
"https://api.github.com/*"
5453
]
55-
}
54+
}

0 commit comments

Comments
 (0)