A chrome extension for storing things you'd like to copy and paste later.
The latest release can be downloaded here
Development in this project is dependent on gnu make
and yarn
.
$ npm -g yarn # or similar
$ make build
After the above commands, all sources will be "compiled" into the copy_buddy
folder and the "Load unpacked extension" button can be used to load this
extension chrome://extensions
All html, javascript and css files can be found in the src/
folder. After
editing them, these files need to be "compiled" again with make build
.
We use jasmine for testing and karma to run tests. To get started, run
$ karma start karma.conf.js
then write your tests.
See customLaunchers about test setup on Travis-Ci versus test setup on local machine.