Skip to content

Instantly share code, notes, and snippets.

@hebasto
Last active February 3, 2021 06:58
Show Gist options
  • Save hebasto/8413d02def9ef965627ca3df779fa343 to your computer and use it in GitHub Desktop.
Save hebasto/8413d02def9ef965627ca3df779fa343 to your computer and use it in GitHub Desktop.
Ledger Nano S and Chrome Apps EOL

Ledger Chrome Apps on NW.js

Setup NW.js

https://blog.chromium.org/2016/08/from-chrome-apps-to-web.html

https://trello.com/c/mf0aFgDK

https://nwjs.io/

https://nwjs.io/blog/chrome-apps-support/

wget -q --progress=bar --show-progress -O - https://dl.nwjs.io/v0.32.3/nwjs-v0.32.3-linux-x64.tar.gz | tar -xz -C ~
ln -sf ~/nwjs-v0.32.3-linux-x64/nw ~/.local/bin/nw
nw

Ledger Manager

https://github.com/LedgerHQ/ledger-manager-chrome

https://chrome.google.com/webstore/detail/ledger-manager/beimhnaefocolcplfimocfiaiefpkgbf

wget -q -O temp.zip https://github.com/LedgerHQ/ledger-manager-chrome/releases/download/1.2.0/chrome-app.zip && unzip -q -u temp.zip -d ~/Ledger/manager/; rm -f temp.zip
nw ~/Ledger/manager/chrome-app/

Ledger Wallet Bitcoin

https://github.com/LedgerHQ/ledger-wallet-chrome

https://chrome.google.com/webstore/detail/ledger-wallet-bitcoin/kkdpmhnladdopljabkgpacgpliggeeaf

wget -q -O temp.zip https://github.com/LedgerHQ/ledger-wallet-chrome/releases/download/1.12.1/SNAPSHOT-1.12.1.zip && unzip -q -u temp.zip -d ~/Ledger/btc/chrome-app/; rm -f temp.zip
nw ~/Ledger/btc/chrome-app/

Ledger Wallet Ethereum

https://github.com/LedgerHQ/ledger-wallet-ethereum-chrome

https://chrome.google.com/webstore/detail/ledger-wallet-ethereum/hmlhkialjkaldndjnlcdfdphcgeadkkm

wget -q -O temp.zip https://github.com/LedgerHQ/ledger-wallet-ethereum-chrome/releases/download/1.2.5/chrome-app.zip && unzip -q -u temp.zip -d ~/Ledger/eth/; rm -f temp.zip
nw ~/Ledger/eth/chrome-app/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment