├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── assets └── webtorrent-v3.1.svg ├── dist ├── animated.gif ├── index.css └── index.js ├── generate_gif.js ├── index.css ├── index.html ├── index.js ├── package.json ├── postcss.config.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | screenshots 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/README.md -------------------------------------------------------------------------------- /assets/webtorrent-v3.1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/assets/webtorrent-v3.1.svg -------------------------------------------------------------------------------- /dist/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/dist/animated.gif -------------------------------------------------------------------------------- /dist/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/dist/index.css -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/dist/index.js -------------------------------------------------------------------------------- /generate_gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/generate_gif.js -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/postcss.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billiegoose/download-with-webtorrent-button/HEAD/webpack.config.js --------------------------------------------------------------------------------