This is my fork of rickpastoor's Scrummer. Below is the original readme for Scrummer.
Download Scrummer for Google Chrome
I'm working with Trello. A lot. I've used the Scrum for Trello plugin, but I found it slowing down Trello when working with a lot of cards. So I wrote a new plugin from scratch, without dependencies on external libraries to keep the footprint as small as possible. Using native browser API's instead of jQuery makes it lightning-fast!
Big kudo's to the guys at Q42 for building Scrum for Trello. If you want more features, use theirs. Use this plugin if you just want to keep track of storypoints and totals for each column in your board, nothing else.
- Displays the number of points for each card in a badge
- Total points for each column
- Clickable buttons next to the title-field to quickly enter your estimate
To get started with developing your own additions to this plugin, run this command:
tools/make-chromium.sh
After this, add a new unpacked extension to your local Google Chrome and point this to the dist/build/scrummer.chromium
folder. Now make your changes, run make-chromium
and refresh your plugin
in Chrome to see if everything is working as it should. There are no tests yet, because YOLO.
To get started with developing your own additions to this plugin, run this command:
tools/make-firefox.sh
After this, install Web Ext:
npm install web-ext --global
With Web Ext, you can run the plugin in a debug environment. Change your directory to dist/build/scrummer.firefox
and run web-ext run
. Now open your Trello board to see if your changes are working as expected. Happy coding!
To build your own version of the Scrummer for Safari plugin, follow these steps:
Install xar-js:
npm install xar-js --global
You need to follow the xar-js README on how to export the required certificate files in order to build a valid version of the extension.
After following this guide, you should have these files inside your platform/safari
folder:
Filename |
---|
apple-intermediate.pem |
apple-root.pem |
cert.pem |
privatekey.pem |
Almost ready. Now run this command:
tools/make-safari.sh all
The script will build a scrummer.safariextz
. Doubleclick it and Safari will ask you if you want to install the extension.