Skip to content

Commit b5fa8aa

Browse files
committed
Squashed commit of the following:
commit 2214420 Author: Katsute <58778985+Katsute@users.noreply.github.com> Date: Thu Dec 16 11:57:17 2021 -0500 adjust templates, readme commit 8266f8b Author: Katsute <58778985+Katsute@users.noreply.github.com> Date: Thu Dec 16 11:54:10 2021 -0500 README commit 62a30e3 Author: Katsute <58778985+Katsute@users.noreply.github.com> Date: Thu Dec 16 11:30:24 2021 -0500 unused permission commit b613155 Author: Katsute <58778985+Katsute@users.noreply.github.com> Date: Wed Dec 15 19:35:27 2021 -0500 v2
1 parent fe32e1a commit b5fa8aa

File tree

8 files changed

+38
-28
lines changed

8 files changed

+38
-28
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ body:
4646
description: |
4747
Release version or branch commit where the issue occured. Do not write 'latest'.
4848
placeholder: |
49-
ex: v1.1, cc4cbc0
49+
ex: v2, 8266f8b
5050
validations:
5151
required: true
5252

@@ -83,12 +83,14 @@ body:
8383
required: false
8484
- label: Insights
8585
required: false
86+
- label: Other (please specify)
87+
required: false
8688

8789
- type: textarea
8890
id: issue
8991
attributes:
9092
label: Issue
9193
description: |
92-
Explain your issue, add any relevant stacktraces here.
94+
Explain your issue.
9395
validations:
94-
required: true
96+
required: false

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
.vscode
33

44
*.crx
5-
*.pem
5+
*.pem
6+
*.zip

README.md

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,39 @@
1-
# GitHub Red Issues
1+
<div align="center">
2+
<a href="https://github.com/Katsute/GitHub-Red-Issues#readme">
3+
<img src="https://raw.githubusercontent.com/Katsute/GitHub-Red-Issues/main/assets/icon.png" width=100 alt="(✔)">
4+
</a>
5+
<h3>GitHub Red Issues</h3>
6+
<p>Revert closed GitHub issues from purple back to red.</p>
7+
<div>
8+
<a href="https://github.com/Katsute/GitHub-Red-Issues/issues">Report an Issue</a>
9+
10+
<a href="https://github.com/Katsute/GitHub-Red-Issues/archive/refs/heads/main.zip">Download Repository</a>
11+
12+
<a href="https://chrome.google.com/webstore/detail/github-red-issues/kjbbjibfgnnfdeabgmbieapkhpojikpc">Install Extension</a>
13+
</div>
14+
</div>
15+
<br>
16+
<div align="center">
17+
<a href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" alt="Creative Commons License"></a>
18+
<br>
19+
<a href="https://chrome.google.com/webstore/detail/github-red-issues/kjbbjibfgnnfdeabgmbieapkhpojikpc"><img src="https://img.shields.io/chrome-web-store/stars/kjbbjibfgnnfdeabgmbieapkhpojikpc?style=for-the-badge" alt="Chrome Web Store"></a>
20+
<a href="https://chrome.google.com/webstore/detail/github-red-issues/kjbbjibfgnnfdeabgmbieapkhpojikpc"><img src="https://img.shields.io/chrome-web-store/users/kjbbjibfgnnfdeabgmbieapkhpojikpc?style=for-the-badge" alt="Chrome Web Store"></a>
21+
<a href="https://chrome.google.com/webstore/detail/github-red-issues/kjbbjibfgnnfdeabgmbieapkhpojikpc"><img src="https://img.shields.io/github/v/release/Katsute/GitHub-Red-Issues?style=for-the-badge" alt="Version"></a>
22+
</div>
223

3-
[![Creative Commons License](https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png)](http://creativecommons.org/licenses/by-nc-sa/4.0/)
24+
## Installation
425

5-
Google Chrome extension to revert closed GitHub issues from purple back to red.
26+
#### Chrome Web Store
627

7-
|[Report an issue](https://github.com/Katsute/GitHub-Red-Issues/issues)|[Download](https://github.com/Katsute/GitHub-Red-Issues/archive/refs/heads/main.zip)|
8-
|---|---|
28+
Install this extension on the [Chrome Web Store](https://chrome.google.com/webstore/detail/github-red-issues/kjbbjibfgnnfdeabgmbieapkhpojikpc).
929

10-
## Installation
30+
#### Checkout
1131

1232
1. Checkout (recommended) or download this repository locally.
1333
2. Go to [`chrome://extensions/`](chrome://extensions/) in your browser and turn on **Developer mode** in the top right.
1434
3. Press **Load unpacked** and select the `src` folder. Do not remove this folder, removing it will cause the extension to be uninstalled.
35+
36+
*If manifest version is unsupported simply change the `manifest_version` to `2`.*
1537
4. Resume coding with closed issues being red.
1638

1739
## Changes

assets/icon-128x.png

4.44 KB
Loading

assets/icon.png

22.4 KB
Loading

assets/screenshot.png

122 KB
Loading

src/index.js

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/manifest.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
{
2-
"manifest_version": 2,
2+
"manifest_version": 3,
33

44
"name": "GitHub Red Issues",
55
"author": "Katsute",
66
"description": "Revert closed GitHub issues from purple back to red.",
7-
"version": "1.5",
7+
"version": "2.0",
88
"homepage_url": "https://github.com/Katsute/GitHub-Red-Issues",
99

10-
"permissions": ["tabs"],
10+
"permissions": [],
1111
"content_scripts": [{
1212
"css": ["style.css"],
13-
"js": ["index.js"],
1413
"matches": ["https://github.com/*"]
1514
}]
1615
}

0 commit comments

Comments
 (0)