Skip to content

Commit c996e31

Browse files
committed
Update to docs, options page, default theme
1 parent 7410c0f commit c996e31

7 files changed

Lines changed: 23 additions & 27 deletions

File tree

.github/ISSUE_TEMPLATE/BUG.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ body:
3232
id: extension
3333
attributes:
3434
label: Extension version
35-
placeholder: ex. LinkedIn Article Tools 1.0.0
35+
placeholder: ex. GitHub Unreplied Comments Indicator 1.0.0
3636
validations:
3737
required: true

.github/ISSUE_TEMPLATE/SUPPORT.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ body:
2222
id: extension
2323
attributes:
2424
label: Extension version
25-
placeholder: ex. LinkedIn Article Tools 1.0.0
25+
placeholder: ex. GitHub Unreplied Comments Indicator 1.0.0

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,10 @@
22

33
Highlights GitHub pull request comments with no replies, helping you spot unresolved feedback instantly.
44

5+
## What and why?
6+
57
This extension helps you stay on top of pull request reviews by visually highlighting GitHub comments that haven’t received a reply. Unreplied comments remain marked until another comment is added to the thread, ensuring you never miss important feedback or leave questions unanswered. Perfect for developers who want to keep PR discussions tidy and ensure all reviewer notes are addressed.
8+
9+
## Credits
10+
11+
Developed by [Clyde D'Souza](https://clydedsouza.net/)

docs/README.md

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,10 @@
1-
# LinkedIn Article Tools
1+
# GitHub Unreplied Comments Indicator
22

3-
Adds four always-visible buttons to LinkedIn for instant access to New Article, Drafts, Scheduled, and Published pages.
3+
Highlights GitHub pull request comments with no replies, helping you spot unresolved feedback instantly.
44

5-
## Why?
5+
## What and why?
66

7-
LinkedIn Article Tools adds a convenient sticky footer to your LinkedIn pages, giving you instant one-click access to all your article-related pages. No more hunting through menus to find where to write or manage your articles.
8-
9-
This extension adds four always-visible buttons to the bottom of LinkedIn:
10-
11-
- Write a New Article – Jump straight into creating your next post.
12-
- Drafts – Quickly view and edit your in-progress articles.
13-
- Scheduled – Check what’s lined up to be published.
14-
- Published – See your live articles in one click.
15-
16-
LinkedIn doesn’t make it easy to reach these pages, but with LinkedIn Article Tools, you’ll save time and keep your writing flow uninterrupted. Whether you’re a content creator, thought leader, or casual writer, these buttons make article management fast, simple, and effortless.
17-
18-
Give it a try and let me know what you think!
7+
This extension helps you stay on top of pull request reviews by visually highlighting GitHub comments that haven’t received a reply. Unreplied comments remain marked until another comment is added to the thread, ensuring you never miss important feedback or leave questions unanswered. Perfect for developers who want to keep PR discussions tidy and ensure all reviewer notes are addressed.
198

209
## Credits
2110

src/common/storage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const getStorage = async (key) => {
66
const data = await chrome.storage.sync.get(key);
77
return data[CHROME_SYNC_STORAGE_THEME_KEY]
88
? data[CHROME_SYNC_STORAGE_THEME_KEY]
9-
: THEMES.pulsating;
9+
: THEMES.leftBorder;
1010
};
1111

1212
export const setStorage = (key, value) => {

src/options/options.html

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@
22
<html>
33
<head>
44
<meta charset="utf-8" />
5-
<title>
6-
Jira Status Colours - Customize the colours of your Jira statuses
7-
</title>
5+
<title>GitHub Unreplied Comments Indicator - Configuration Page</title>
86
<meta name="viewport" content="initial-scale=1, maximum-scale=1" />
7+
<link href="options.css" rel="stylesheet" />
8+
<script src="options.js" type="text/javascript"></script>
99
<meta
1010
name="description"
11-
content="Customize the colours of your Jira statuses"
11+
content="Highlights GitHub pull request comments with no replies, helping you spot unresolved feedback instantly"
1212
/>
13-
<link href="options.css" rel="stylesheet" />
14-
<script src="options.js" type="text/javascript"></script>
1513
</head>
1614
<body>
1715
<div>
@@ -22,9 +20,9 @@ <h1>GitHub Unreplied Comments Indicator</h1>
2220
Highlights GitHub pull request comments with no replies, helping you
2321
spot unresolved feedback instantly.
2422
</p>
23+
<p>Select a theme that will be used to highlight unreplied comments.</p>
2524
</header>
2625
<main>
27-
<p>Select a theme that will be used to highlight unreplied comments.</p>
2826
<div class="guci-selection-header">
2927
<h2>Theme #1 - Left border</h2>
3028
<a href="#" class="option-link" data-option="leftBorder"
@@ -58,14 +56,14 @@ <h2>Theme #3 - Pulsating</h2>
5856
</main>
5957
<footer>
6058
<a
61-
href="https://github.com/ClydeDz/jira-status-colours-chrome-extension/issues/new/choose"
59+
href="https://github.com/ClydeDz/github-unreplied-comments-indicator-chrome-extension/issues/new/choose"
6260
target="_blank"
6361
rel="noreferrer"
6462
>
6563
Have an idea?</a
6664
><span class="link-separator"></span>
6765
<a
68-
href="https://github.com/ClydeDz/jira-status-colours-chrome-extension/issues/new/choose"
66+
href="https://github.com/ClydeDz/github-unreplied-comments-indicator-chrome-extension/issues/new/choose"
6967
target="_blank"
7068
rel="noreferrer"
7169
>

src/styles/options.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ body > div {
1010
padding: 12px;
1111
margin-block: 12px;
1212
}
13+
main {
14+
margin-block: 30px;
15+
}
1316
.guci-selection-header {
1417
align-items: center;
1518
margin-block: 20px;

0 commit comments

Comments
 (0)