All changes

This commit is contained in:
Andras Schmelczer 2026-03-14 21:36:00 +00:00
parent 593f380581
commit 49f7ec2f5a
60 changed files with 1783 additions and 679 deletions

View file

@ -50,6 +50,10 @@ export class ScreenshotCache {
normalized.tab = params.get('tab')!;
}
if (params.get('path')) {
normalized.path = params.get('path')!;
}
const input = JSON.stringify(normalized);
const hash = createHash('sha256').update(input).digest('hex').substring(0, 16);
return hash;