Add Clockify one-click time tracking button to popular web tools.
About Clockify → List of integrations →
Want to create an integration or improve an existing one? Awesome! Just fork the repo, make your changes, and send us a pull request.
Adding your tool is super easy and quick. You need basic web programming skills (HTML, Javascript, Git) and can be done in a couple of hours.
Create an issue here on Github.
Our team will take a look once we get the chance, but that may take a few weeks or more (depending on our workload).
If you need the fix quicker, feel free to update the integration yourself and send us a pull request. We typically take care of them within a few days, meaning your fix can sometimes go live within the same week.
- Make sure you have Node, NPM, Ruby, and Compass installed on your system
- Clone the repository
git clone [email protected]:clockify/browser-extension.git
- Run
npm install
- Build Chrome extension by running
npm run compile.dev.chrome
- Navigate to
chrome://extensions/
- Enable "Developer mode" (located in the top right corner)
- Click "Load unpacked" and select the
www/chrome.dev/
folder that you've built
- Build Firefox add-on by running
npm run compile.dev.firefox
- Navigate to
about:debugging
- Click "Load Temporary Add-on"
- Select the
www/firefox.dev/manifest.json
file
Add the url of the new tool in /src/integrations/integrations.json
. Then, create a /src/integrations/myapp.js
file. It in, define where the button appears and from which element it needs to pick up the description field.
When the extension recognizes that you're on that url, it will load the necessary script.
If you need an example, you can see how Trello is implemented.
Use createButton()
so both the icon and "Start timer" is displayed. If there's not enough space, you can use createSmallButton
(so only the icon is displayed).
Before sending us a pull request, make sure you test it in both Chrome and Firefox.