├── .gitignore ├── CREDITS ├── HandyBrowser.desktop ├── LICENSE ├── README.md ├── bookmarkManager.html ├── boot.html ├── bower.json ├── css ├── bookmarkManager.css ├── boot.css ├── donate.css ├── main.css ├── map.css ├── tray.css └── viewNameRecord.css ├── docker_utils ├── Dockerfile-HNSD ├── Dockerfile-HNSD-Prebuilt ├── Dockerfile-HSD_RESOLVER ├── getFavicon.js ├── getNetworkMapLocations.js ├── godane ├── hnsd ├── installChecker.js ├── proxyRule.js ├── resolv.conf ├── run.godane.proxy.sh ├── run.hns.node.sh ├── run.hns.resolver.sh ├── run.hnsd.sh ├── runProxy.js ├── startProxy.sh └── stop.sh ├── donate.html ├── fail.html ├── fonts ├── IBMPlexMono-Regular.ttf ├── IBMPlexSans-Italic.ttf ├── IBMPlexSans-Regular.ttf ├── IBMPlexSans-SemiBold.ttf ├── nitti-light-v500.woff └── nitti-medium-v500.woff ├── glsl ├── handshake.json └── handshake_complex.json ├── icons ├── app.icns ├── app.ico ├── app.png ├── app_128x128x32.png ├── app_16x16x32.png ├── app_256x256x32.png ├── app_32x32x32.png ├── app_48x48x32.png ├── app_png.png ├── document.icns ├── logo_min.svg └── qr.png ├── img ├── HandyBrowser_flowchart.png ├── btc_qr.jpg ├── certs_ff1.png ├── certs_ff2.png ├── gpu.png ├── gpu.svg ├── proxy_setting_ios1.jpeg ├── proxy_setting_ios2.png ├── proxy_success_ios.png ├── proxysetting_firefox.png ├── toolbar_mac.png └── wifi_setting_ios0.jpeg ├── index.html ├── js ├── bookmarks.js ├── bookmarks_default.json ├── boot.js ├── hsdLauncher.js ├── mac.askpass.js ├── map.js └── tray.js ├── networkMap.html ├── package.json ├── proxyInfo.html ├── tray.html ├── utils ├── install_CA_cert_linux.sh ├── restart.linux.sh ├── restart.mac.sh └── restart.windows.bat └── viewNameRecord.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/CREDITS -------------------------------------------------------------------------------- /HandyBrowser.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/HandyBrowser.desktop -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/README.md -------------------------------------------------------------------------------- /bookmarkManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/bookmarkManager.html -------------------------------------------------------------------------------- /boot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/boot.html -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/bower.json -------------------------------------------------------------------------------- /css/bookmarkManager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/css/bookmarkManager.css -------------------------------------------------------------------------------- /css/boot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/css/boot.css -------------------------------------------------------------------------------- /css/donate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/css/donate.css -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/css/main.css -------------------------------------------------------------------------------- /css/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/css/map.css -------------------------------------------------------------------------------- /css/tray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/css/tray.css -------------------------------------------------------------------------------- /css/viewNameRecord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/css/viewNameRecord.css -------------------------------------------------------------------------------- /docker_utils/Dockerfile-HNSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/Dockerfile-HNSD -------------------------------------------------------------------------------- /docker_utils/Dockerfile-HNSD-Prebuilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/Dockerfile-HNSD-Prebuilt -------------------------------------------------------------------------------- /docker_utils/Dockerfile-HSD_RESOLVER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/Dockerfile-HSD_RESOLVER -------------------------------------------------------------------------------- /docker_utils/getFavicon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/getFavicon.js -------------------------------------------------------------------------------- /docker_utils/getNetworkMapLocations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/getNetworkMapLocations.js -------------------------------------------------------------------------------- /docker_utils/godane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/godane -------------------------------------------------------------------------------- /docker_utils/hnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/hnsd -------------------------------------------------------------------------------- /docker_utils/installChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/installChecker.js -------------------------------------------------------------------------------- /docker_utils/proxyRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/proxyRule.js -------------------------------------------------------------------------------- /docker_utils/resolv.conf: -------------------------------------------------------------------------------- 1 | nameserver 127.0.0.1 -------------------------------------------------------------------------------- /docker_utils/run.godane.proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/run.godane.proxy.sh -------------------------------------------------------------------------------- /docker_utils/run.hns.node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/run.hns.node.sh -------------------------------------------------------------------------------- /docker_utils/run.hns.resolver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/run.hns.resolver.sh -------------------------------------------------------------------------------- /docker_utils/run.hnsd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./hnsd -p 4 -r 127.0.0.1:53 -------------------------------------------------------------------------------- /docker_utils/runProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/runProxy.js -------------------------------------------------------------------------------- /docker_utils/startProxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/docker_utils/startProxy.sh -------------------------------------------------------------------------------- /docker_utils/stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | pkill -f hsd 3 | echo "DONE" -------------------------------------------------------------------------------- /donate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/donate.html -------------------------------------------------------------------------------- /fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/fail.html -------------------------------------------------------------------------------- /fonts/IBMPlexMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/fonts/IBMPlexMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/IBMPlexSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/fonts/IBMPlexSans-Italic.ttf -------------------------------------------------------------------------------- /fonts/IBMPlexSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/fonts/IBMPlexSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/IBMPlexSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/fonts/IBMPlexSans-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/nitti-light-v500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/fonts/nitti-light-v500.woff -------------------------------------------------------------------------------- /fonts/nitti-medium-v500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/fonts/nitti-medium-v500.woff -------------------------------------------------------------------------------- /glsl/handshake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/glsl/handshake.json -------------------------------------------------------------------------------- /glsl/handshake_complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/glsl/handshake_complex.json -------------------------------------------------------------------------------- /icons/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/app.icns -------------------------------------------------------------------------------- /icons/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/app.ico -------------------------------------------------------------------------------- /icons/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/app.png -------------------------------------------------------------------------------- /icons/app_128x128x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/app_128x128x32.png -------------------------------------------------------------------------------- /icons/app_16x16x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/app_16x16x32.png -------------------------------------------------------------------------------- /icons/app_256x256x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/app_256x256x32.png -------------------------------------------------------------------------------- /icons/app_32x32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/app_32x32x32.png -------------------------------------------------------------------------------- /icons/app_48x48x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/app_48x48x32.png -------------------------------------------------------------------------------- /icons/app_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/app_png.png -------------------------------------------------------------------------------- /icons/document.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/document.icns -------------------------------------------------------------------------------- /icons/logo_min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/logo_min.svg -------------------------------------------------------------------------------- /icons/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/icons/qr.png -------------------------------------------------------------------------------- /img/HandyBrowser_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/HandyBrowser_flowchart.png -------------------------------------------------------------------------------- /img/btc_qr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/btc_qr.jpg -------------------------------------------------------------------------------- /img/certs_ff1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/certs_ff1.png -------------------------------------------------------------------------------- /img/certs_ff2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/certs_ff2.png -------------------------------------------------------------------------------- /img/gpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/gpu.png -------------------------------------------------------------------------------- /img/gpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/gpu.svg -------------------------------------------------------------------------------- /img/proxy_setting_ios1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/proxy_setting_ios1.jpeg -------------------------------------------------------------------------------- /img/proxy_setting_ios2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/proxy_setting_ios2.png -------------------------------------------------------------------------------- /img/proxy_success_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/proxy_success_ios.png -------------------------------------------------------------------------------- /img/proxysetting_firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/proxysetting_firefox.png -------------------------------------------------------------------------------- /img/toolbar_mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/toolbar_mac.png -------------------------------------------------------------------------------- /img/wifi_setting_ios0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/img/wifi_setting_ios0.jpeg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/index.html -------------------------------------------------------------------------------- /js/bookmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/js/bookmarks.js -------------------------------------------------------------------------------- /js/bookmarks_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/js/bookmarks_default.json -------------------------------------------------------------------------------- /js/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/js/boot.js -------------------------------------------------------------------------------- /js/hsdLauncher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/js/hsdLauncher.js -------------------------------------------------------------------------------- /js/mac.askpass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/js/mac.askpass.js -------------------------------------------------------------------------------- /js/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/js/map.js -------------------------------------------------------------------------------- /js/tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/js/tray.js -------------------------------------------------------------------------------- /networkMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/networkMap.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/package.json -------------------------------------------------------------------------------- /proxyInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/proxyInfo.html -------------------------------------------------------------------------------- /tray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/tray.html -------------------------------------------------------------------------------- /utils/install_CA_cert_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/utils/install_CA_cert_linux.sh -------------------------------------------------------------------------------- /utils/restart.linux.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sleep 4 && $2 3 | -------------------------------------------------------------------------------- /utils/restart.mac.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sleep 4 && open -n -a $2 3 | -------------------------------------------------------------------------------- /utils/restart.windows.bat: -------------------------------------------------------------------------------- 1 | echo RESTARTING HANDYMINER 2 | timeout /t 4 /nobreak >NUL && %2 -------------------------------------------------------------------------------- /viewNameRecord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HandyOSS/HandyBrowser/HEAD/viewNameRecord.html --------------------------------------------------------------------------------