選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

amo.md 910 B

123456789101112131415161718192021222324252627282930
  1. # LessPass Web Extension Legacy
  2. ## Verify the web extension
  3. The web extension is just a wrapper around lesspass-pure node module.
  4. Source file correspond to the zip downloaded on http://github.com/lesspass/lesspass/archive/${sha256}.zip.
  5. {sha256} is the git sha256 use when build was done.
  6. ## requirements
  7. To rebuild the web extension, you need node, yarn and md5sum to check the md5 sum of the files
  8. Tested with:
  9. * node version 16.10.0
  10. * yarn version 1.22.11
  11. * md5sum (GNU coreutils) version 8.32
  12. ## unzip source {sha256}.zip
  13. unzip {sha256}.zip -d /tmp
  14. cd /tmp/lesspass-{sha256}
  15. ## Reproduce lesspass.min.js and dist folder with sources
  16. yarn install
  17. yarn workspace lesspass-crypto build
  18. yarn workspace lesspass-pure build
  19. find packages/lesspass-web-extension-legacy/extension/dist/ -type f -exec md5sum {} \;
  20. find packages/lesspass-pure/dist -type f -exec md5sum {} \;