From 6e5c3b4733e5faee611ddb43e385a4ba00061a99 Mon Sep 17 00:00:00 2001 From: Jones8683 Date: Fri, 30 May 2025 12:05:23 +0930 Subject: [PATCH 01/10] Neaten 'here' button --- src/seqta/utils/Openers/OpenAboutPage.ts | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/seqta/utils/Openers/OpenAboutPage.ts b/src/seqta/utils/Openers/OpenAboutPage.ts index a953714a..1f441c10 100644 --- a/src/seqta/utils/Openers/OpenAboutPage.ts +++ b/src/seqta/utils/Openers/OpenAboutPage.ts @@ -5,6 +5,26 @@ import { animate, stagger } from "motion"; import { DeleteWhatsNew } from "../Whatsnew"; export function OpenAboutPage() { + if (!document.getElementById('about-here-link-style')) { + const style = document.createElement('style'); + style.id = 'about-here-link-style'; + style.textContent = ` + .about-here-link { + background: rgba(0, 102, 255, 0.07) !important; + border-radius: 0.3em !important; + padding: 2px 10px !important; + color: #176bb2 !important; + font-weight: 500 !important; + transition: background 0.2s, color 0.2s !important; + cursor: pointer !important; + } + .about-here-link:hover { + background: rgba(0, 102, 255, 0.13) !important; + color: #124c87 !important; + } + `; + document.head.appendChild(style); + } const background = document.createElement("div"); background.id = "whatsnewbk"; background.classList.add("whatsnewBackground"); @@ -28,7 +48,7 @@ export function OpenAboutPage() {

We are currently working on fixing bugs and adding useful features. If you want to make a feature request or report a bug, you can do so on GitHub (find icon below). We are always looking for more contributors!

Credits:

Nulkem created the original extension, was ported to Manifest V3 by MEGA-Dawg68, and is under active development by Crazypersonalph, SethBurkart123, and other contributors.

-

Full contributors list here

+

Full contributors list here

`).firstChild; From 37d62cf2a8c64f5a0863aa1f302625c14a335cc8 Mon Sep 17 00:00:00 2001 From: Jones Date: Fri, 30 May 2025 12:08:11 +0930 Subject: [PATCH 02/10] Neaten "here" button in openaboutpage.ts --- src/seqta/utils/Openers/OpenAboutPage.ts | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/seqta/utils/Openers/OpenAboutPage.ts b/src/seqta/utils/Openers/OpenAboutPage.ts index a953714a..1f441c10 100644 --- a/src/seqta/utils/Openers/OpenAboutPage.ts +++ b/src/seqta/utils/Openers/OpenAboutPage.ts @@ -5,6 +5,26 @@ import { animate, stagger } from "motion"; import { DeleteWhatsNew } from "../Whatsnew"; export function OpenAboutPage() { + if (!document.getElementById('about-here-link-style')) { + const style = document.createElement('style'); + style.id = 'about-here-link-style'; + style.textContent = ` + .about-here-link { + background: rgba(0, 102, 255, 0.07) !important; + border-radius: 0.3em !important; + padding: 2px 10px !important; + color: #176bb2 !important; + font-weight: 500 !important; + transition: background 0.2s, color 0.2s !important; + cursor: pointer !important; + } + .about-here-link:hover { + background: rgba(0, 102, 255, 0.13) !important; + color: #124c87 !important; + } + `; + document.head.appendChild(style); + } const background = document.createElement("div"); background.id = "whatsnewbk"; background.classList.add("whatsnewBackground"); @@ -28,7 +48,7 @@ export function OpenAboutPage() {

We are currently working on fixing bugs and adding useful features. If you want to make a feature request or report a bug, you can do so on GitHub (find icon below). We are always looking for more contributors!

Credits:

Nulkem created the original extension, was ported to Manifest V3 by MEGA-Dawg68, and is under active development by Crazypersonalph, SethBurkart123, and other contributors.

-

Full contributors list here

+

Full contributors list here

`).firstChild; From 59e195d2aa714c19d6e5f98a6816f95291c5ebe0 Mon Sep 17 00:00:00 2001 From: Jones Date: Fri, 30 May 2025 12:10:36 +0930 Subject: [PATCH 03/10] Update OpenAboutPage.ts - Fix coloring --- src/seqta/utils/Openers/OpenAboutPage.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/seqta/utils/Openers/OpenAboutPage.ts b/src/seqta/utils/Openers/OpenAboutPage.ts index 1f441c10..ab543bb5 100644 --- a/src/seqta/utils/Openers/OpenAboutPage.ts +++ b/src/seqta/utils/Openers/OpenAboutPage.ts @@ -13,14 +13,14 @@ export function OpenAboutPage() { background: rgba(0, 102, 255, 0.07) !important; border-radius: 0.3em !important; padding: 2px 10px !important; - color: #176bb2 !important; + color:rgb(56, 166, 255) !important; font-weight: 500 !important; transition: background 0.2s, color 0.2s !important; cursor: pointer !important; } .about-here-link:hover { background: rgba(0, 102, 255, 0.13) !important; - color: #124c87 !important; + color:rgb(80, 168, 255) !important; } `; document.head.appendChild(style); From 280163111e9191d32d25dc7a21dc421eedab58e0 Mon Sep 17 00:00:00 2001 From: Jones Date: Fri, 30 May 2025 12:16:53 +0930 Subject: [PATCH 04/10] Update OpenAboutPage.ts - Move css to injected.scss --- src/seqta/utils/Openers/OpenAboutPage.ts | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/seqta/utils/Openers/OpenAboutPage.ts b/src/seqta/utils/Openers/OpenAboutPage.ts index ab543bb5..2a3fbafb 100644 --- a/src/seqta/utils/Openers/OpenAboutPage.ts +++ b/src/seqta/utils/Openers/OpenAboutPage.ts @@ -5,26 +5,6 @@ import { animate, stagger } from "motion"; import { DeleteWhatsNew } from "../Whatsnew"; export function OpenAboutPage() { - if (!document.getElementById('about-here-link-style')) { - const style = document.createElement('style'); - style.id = 'about-here-link-style'; - style.textContent = ` - .about-here-link { - background: rgba(0, 102, 255, 0.07) !important; - border-radius: 0.3em !important; - padding: 2px 10px !important; - color:rgb(56, 166, 255) !important; - font-weight: 500 !important; - transition: background 0.2s, color 0.2s !important; - cursor: pointer !important; - } - .about-here-link:hover { - background: rgba(0, 102, 255, 0.13) !important; - color:rgb(80, 168, 255) !important; - } - `; - document.head.appendChild(style); - } const background = document.createElement("div"); background.id = "whatsnewbk"; background.classList.add("whatsnewBackground"); From 1ae9bd0652af8079e01af9c25fb35213d791c106 Mon Sep 17 00:00:00 2001 From: Jones8683 Date: Fri, 30 May 2025 12:28:47 +0930 Subject: [PATCH 05/10] Add about-here-link styles to injected.scss --- src/css/injected.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/css/injected.scss b/src/css/injected.scss index 299c23e7..f85a7ebf 100644 --- a/src/css/injected.scss +++ b/src/css/injected.scss @@ -3397,6 +3397,20 @@ body { margin-bottom: 12px; } +.about-here-link { + background: rgba(0, 102, 255, 0.07) !important; + border-radius: 0.3em !important; + padding: 2px 10px !important; + color:rgb(56, 166, 255) !important; + font-weight: 500 !important; + transition: background 0.2s, color 0.2s !important; + cursor: pointer !important; + } + .about-here-link:hover { + background: rgba(0, 102, 255, 0.13) !important; + color:rgb(80, 168, 255) !important; + } + @keyframes shimmer { 0% { background-position: -1000px 0; From a855fbe9ecd7d6d41eb18be4226faf24cacc2095 Mon Sep 17 00:00:00 2001 From: Jones Date: Fri, 30 May 2025 18:45:26 +0930 Subject: [PATCH 06/10] Update README.md - Fix spelling Somehow "preferred" was misspelled three whole times --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d6e82240..7e534c1b 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ npm install --legacy-peer-deps # Only NPM supported 2. Run the dev script (it updates as you save files) ``` -npm run dev # or use your perferred package manager +npm run dev # or use your preferred package manager ``` ### Building for production @@ -91,13 +91,13 @@ npm run dev # or use your perferred package manager 2. Run the build script ``` -npm run build # or use your perferred package manager +npm run build # or use your preferred package manager ``` 2.1. Package it up (optional) ``` -npm run zip # This REQUIRES 7-Zip to be installed in order to work. You can also use your perferred package manager +npm run zip # This REQUIRES 7-Zip to be installed in order to work. You can also use your preferred package manager ``` 3. Load the extension into chrome From 84ab19eee7347ee126795e3340c4480d8252327c Mon Sep 17 00:00:00 2001 From: Jones Date: Sun, 1 Jun 2025 10:13:24 +0930 Subject: [PATCH 07/10] Update injected.scss - fix indents --- src/css/injected.scss | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/css/injected.scss b/src/css/injected.scss index f85a7ebf..d4103699 100644 --- a/src/css/injected.scss +++ b/src/css/injected.scss @@ -3398,18 +3398,18 @@ body { } .about-here-link { - background: rgba(0, 102, 255, 0.07) !important; - border-radius: 0.3em !important; - padding: 2px 10px !important; - color:rgb(56, 166, 255) !important; - font-weight: 500 !important; - transition: background 0.2s, color 0.2s !important; - cursor: pointer !important; - } - .about-here-link:hover { - background: rgba(0, 102, 255, 0.13) !important; - color:rgb(80, 168, 255) !important; - } + background: rgba(0, 102, 255, 0.07) !important; + border-radius: 0.3em !important; + padding: 2px 10px !important; + color:rgb(56, 166, 255) !important; + font-weight: 500 !important; + transition: background 0.2s, color 0.2s !important; + cursor: pointer !important; +} +.about-here-link:hover { + background: rgba(0, 102, 255, 0.13) !important; + color:rgb(80, 168, 255) !important; +} @keyframes shimmer { 0% { From 0b93223b84448d8b6b5feb2f5a85e632ce6aac0d Mon Sep 17 00:00:00 2001 From: Alphons Joseph <93847055+Crazypersonalph@users.noreply.github.com> Date: Mon, 2 Jun 2025 17:00:01 +0800 Subject: [PATCH 08/10] capitalise here --- src/seqta/utils/Openers/OpenAboutPage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/seqta/utils/Openers/OpenAboutPage.ts b/src/seqta/utils/Openers/OpenAboutPage.ts index 2a3fbafb..5a23f12b 100644 --- a/src/seqta/utils/Openers/OpenAboutPage.ts +++ b/src/seqta/utils/Openers/OpenAboutPage.ts @@ -28,7 +28,7 @@ export function OpenAboutPage() {

We are currently working on fixing bugs and adding useful features. If you want to make a feature request or report a bug, you can do so on GitHub (find icon below). We are always looking for more contributors!

Credits:

Nulkem created the original extension, was ported to Manifest V3 by MEGA-Dawg68, and is under active development by Crazypersonalph, SethBurkart123, and other contributors.

-

Full contributors list here

+

Full contributors list HERE

`).firstChild; From 4c55cf43319ea41860c57a0e2fc77051f5a036e2 Mon Sep 17 00:00:00 2001 From: Jones Jankovic Date: Mon, 2 Jun 2025 19:10:52 +0930 Subject: [PATCH 09/10] Change name of class selector --- Push Procedure.txt | 14 ++++++++++++++ src/css/injected.scss | 4 ++-- src/seqta/utils/Openers/OpenAboutPage.ts | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 Push Procedure.txt diff --git a/Push Procedure.txt b/Push Procedure.txt new file mode 100644 index 00000000..9fd4a537 --- /dev/null +++ b/Push Procedure.txt @@ -0,0 +1,14 @@ +🔧 Step-by-step in command prompt: +Check the status of your changes: + + +git add . +This adds all the changed files. If you only want specific files, you can do git add filename. + + +git commit -m "commit message here" +Write something descriptive (but it doesn’t need to be Shakespeare). + + +git push origin main +Replace main with master if your branch is called that — check with git branch. \ No newline at end of file diff --git a/src/css/injected.scss b/src/css/injected.scss index d4103699..4de7aa2b 100644 --- a/src/css/injected.scss +++ b/src/css/injected.scss @@ -3397,7 +3397,7 @@ body { margin-bottom: 12px; } -.about-here-link { +.AboutPageLink { background: rgba(0, 102, 255, 0.07) !important; border-radius: 0.3em !important; padding: 2px 10px !important; @@ -3406,7 +3406,7 @@ body { transition: background 0.2s, color 0.2s !important; cursor: pointer !important; } -.about-here-link:hover { +.AboutPageLink:hover { background: rgba(0, 102, 255, 0.13) !important; color:rgb(80, 168, 255) !important; } diff --git a/src/seqta/utils/Openers/OpenAboutPage.ts b/src/seqta/utils/Openers/OpenAboutPage.ts index 5a23f12b..dcf57632 100644 --- a/src/seqta/utils/Openers/OpenAboutPage.ts +++ b/src/seqta/utils/Openers/OpenAboutPage.ts @@ -28,7 +28,7 @@ export function OpenAboutPage() {

We are currently working on fixing bugs and adding useful features. If you want to make a feature request or report a bug, you can do so on GitHub (find icon below). We are always looking for more contributors!

Credits:

Nulkem created the original extension, was ported to Manifest V3 by MEGA-Dawg68, and is under active development by Crazypersonalph, SethBurkart123, and other contributors.

-

Full contributors list HERE

+

Full contributors list HERE

`).firstChild; From 418c3c010e7582b5d555bdd53d5268c38a266a6b Mon Sep 17 00:00:00 2001 From: Jones Date: Mon, 2 Jun 2025 19:13:00 +0930 Subject: [PATCH 10/10] Delete Push Procedure.txt idk why this was here it was an acciadent --- Push Procedure.txt | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 Push Procedure.txt diff --git a/Push Procedure.txt b/Push Procedure.txt deleted file mode 100644 index 9fd4a537..00000000 --- a/Push Procedure.txt +++ /dev/null @@ -1,14 +0,0 @@ -🔧 Step-by-step in command prompt: -Check the status of your changes: - - -git add . -This adds all the changed files. If you only want specific files, you can do git add filename. - - -git commit -m "commit message here" -Write something descriptive (but it doesn’t need to be Shakespeare). - - -git push origin main -Replace main with master if your branch is called that — check with git branch. \ No newline at end of file