您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829
  1. # LessPass Web Extension
  2. ## Verify the web extension
  3. The web extension is just a wrapper around lesspass-pure on npm.
  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 12.16.3
  10. * yarn version 1.22.4
  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-pure run build
  18. find packages/lesspass-web-extension/extension/dist/ -type f -exec md5sum {} \;
  19. find packages/lesspass-pure/dist -type f -exec md5sum {} \;