Skip to content

Commit

Permalink
Update Chrome extension URL
Browse files Browse the repository at this point in the history
  • Loading branch information
daveearley committed Nov 4, 2024
1 parent 7bd1c9b commit f7822e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/misc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const getBrowserExtensionInfo = () => {
name: 'Edge Add-On',
},
[Browsers.Chrome]: {
link: 'https://chrome.google.com/webstore/detail/screenshotrocks-one-click/oolmphedpohnagciifbnfpemadolahki/',
link: 'https://chromewebstore.google.com/detail/screenshotrocks-one-click/oolmphedpohnagciifbnfpemadolahki',
name: 'Chrome Extension',
}
};
Expand All @@ -49,4 +49,4 @@ export const clamp = (number: number, min: number, max: number): number => {
return Math.max(min, Math.min(number, max));
}

export const equals = (thing1: any, thing2: any): boolean => (thing1 === thing2);
export const equals = (thing1: any, thing2: any): boolean => (thing1 === thing2);

0 comments on commit f7822e5

Please sign in to comment.