Skip to content

Commit

Permalink
misc: style, version and description updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Acorn221 committed Oct 27, 2023
1 parent 6abbfb1 commit 3daf6c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "lighter-fuel-for-tinder",
"displayName": "LighterFuel for tinder",
"version": "1.4.7",
"description": "LighterFuel helps you to identify catfish, letting you see when profile images were uploaded and reverse image search photos!",
"version": "1.4.8",
"description": "LighterFuel helps you see when accounts were created, see enlarged photos and reverse image search photos!",
"author": "James",
"scripts": {
"dev": "plasmo dev",
Expand Down
2 changes: 1 addition & 1 deletion src/contentsHelpers/LighterFuel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ class LighterFuel {
const overlayNode = document.createElement('p');
const date = new Date(data.accountCreated);
const xOld = getTimeOld(date.getTime());
overlayNode.innerHTML = `${text.overlay.createdAt}: ${date.getHours()}:${date.getMinutes()} ${date.toLocaleDateString()} ${xOld} Old`;
overlayNode.innerHTML = `${text.overlay.createdAt}: ${date.getHours()}:${date.getMinutes()} ${date.toLocaleDateString()} ${xOld} Ago`;
if (!data.hqUrl) {
console.log('no hqUrl', data);
}
Expand Down
1 change: 1 addition & 0 deletions src/contentsHelpers/Misc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export const createButton = (url: string): HTMLElement => {
openHighQuality.style.color = 'black';
openHighQuality.href = url;
openHighQuality.innerText = 'Open High Quality';
openHighQuality.style.outline = 'black solid 1px';
openHighQuality.target = '_blank';

parent.appendChild(openHighQuality);
Expand Down

0 comments on commit 3daf6c7

Please sign in to comment.