From 5c556bd2c5a2753e255d848a98c2f850fc9b01d0 Mon Sep 17 00:00:00 2001 From: Kento Nishi Date: Wed, 15 May 2024 01:33:30 -0400 Subject: [PATCH] Fix broken links Co-authored-by: thatsprettygood <36249601+thatsprettygood@users.noreply.github.com> --- src/manifest.json | 2 +- src/scripts/chat-background.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/manifest.json b/src/manifest.json index 2f6155b7..e53198c7 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "HyperChat [Improved YouTube Chat]", - "homepage_url": "https://livetl.app/en/hyperchat/", + "homepage_url": "https://livetl.app/hyperchat", "description": "Improved YouTube chat with CPU/RAM optimizations, customization options, and cutting-edge features!", "version": "2.6.14", "permissions": [ diff --git a/src/scripts/chat-background.ts b/src/scripts/chat-background.ts index fd6033cd..595c81d3 100644 --- a/src/scripts/chat-background.ts +++ b/src/scripts/chat-background.ts @@ -432,7 +432,7 @@ chrome.browserAction.onClicked.addListener(() => { if (isLiveTL) { chrome.tabs.create({ url: 'https://livetl.app' }, () => {}); } else { - chrome.tabs.create({ url: 'https://livetl.app/en/hyperchat/' }, () => {}); + chrome.tabs.create({ url: 'https://livetl.app/hyperchat' }, () => {}); } });