webext-signed-pages icon indicating copy to clipboard operation
webext-signed-pages copied to clipboard

Signing does not work

Open Meri3252 opened this issue 11 months ago • 1 comments

To reproduce:

test.html

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
  1. Download repo
  2. Run: npm install
  3. Run: /page-signer.js test.html
  4. output.html is identical to test.html without any signature

Meri3252 avatar May 19 '25 16:05 Meri3252

It doesn't work because you've missed example.html mentioned in README.md, you're missing a block:

after doctype. Another problem you might encounter later is missing PGP keys in your system, example how to create them: gpg --full-generate-key

MashedD avatar Jul 15 '25 14:07 MashedD