├── .gitignore ├── Demo.png ├── add_symbol.gif ├── assets ├── 577241-200.png ├── CreateIcns.src ├── MyIcon.icns ├── add.png ├── anticlockwise-downwards-and-upwards-open-circle-arrows_1f504.png ├── bitcoin.png ├── bitcoin_w.png ├── bitcoin_w_small.png ├── bitcoin_w_small_1.png ├── blockchain-39-512.png ├── box_edit-512.png ├── btc1.png ├── edit.png └── opengraph.png ├── index.css ├── index.html ├── index.js ├── menu.gif ├── package.json ├── page.js ├── page.ts ├── price_alert.gif ├── readme.md ├── tools.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /node_modules/ 3 | /out/ 4 | .DS_Store 5 | *.log -------------------------------------------------------------------------------- /Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/Demo.png -------------------------------------------------------------------------------- /add_symbol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/add_symbol.gif -------------------------------------------------------------------------------- /assets/577241-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/577241-200.png -------------------------------------------------------------------------------- /assets/CreateIcns.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/CreateIcns.src -------------------------------------------------------------------------------- /assets/MyIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/MyIcon.icns -------------------------------------------------------------------------------- /assets/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/add.png -------------------------------------------------------------------------------- /assets/anticlockwise-downwards-and-upwards-open-circle-arrows_1f504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/anticlockwise-downwards-and-upwards-open-circle-arrows_1f504.png -------------------------------------------------------------------------------- /assets/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/bitcoin.png -------------------------------------------------------------------------------- /assets/bitcoin_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/bitcoin_w.png -------------------------------------------------------------------------------- /assets/bitcoin_w_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/bitcoin_w_small.png -------------------------------------------------------------------------------- /assets/bitcoin_w_small_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/bitcoin_w_small_1.png -------------------------------------------------------------------------------- /assets/blockchain-39-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/blockchain-39-512.png -------------------------------------------------------------------------------- /assets/box_edit-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/box_edit-512.png -------------------------------------------------------------------------------- /assets/btc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/btc1.png -------------------------------------------------------------------------------- /assets/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/edit.png -------------------------------------------------------------------------------- /assets/opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/assets/opengraph.png -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/index.js -------------------------------------------------------------------------------- /menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/menu.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/package.json -------------------------------------------------------------------------------- /page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/page.js -------------------------------------------------------------------------------- /page.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /price_alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/price_alert.gif -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/readme.md -------------------------------------------------------------------------------- /tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/tools.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yoomin233/electron-cryptocurrency-price-tray/HEAD/yarn.lock --------------------------------------------------------------------------------