chrome-next-step-for-trello

Next Step for Trello JavaScript Style Guide Codacy Badge

Browser extension to check tasks directly from your Trello boards. ☑️🚀

🔴 Note: The corresponding extension on Chrome Web Store was acquired on June 5th, 2023. It’s now maintained by a different developer, in a different repository.

You can still install the previous version as a a user-script, in your favorite browser.

Next step for trello screenshot

Developers

📺🛠 You can watch on YouTube how I developed this Chrome Extension: Livecoding Sessions.

Note: Version number is bumped and the extension is published to Chrome Web Store automatically by semantic-release, run on CI after each commit on the main branch. Read release.config.js for more information.

Contribute

This Chrome Extension is open source and free to use. It includes features and fixes proposed by several contributors. Pull requests are welcome, especially on prioritized bugs and feature requests. Please don’t forget to read CONTRIBUTING.md first.

Donations are not expected but always appreciated. 🤗

Development workflow

Setup the project locally

$ git clone https://github.com/adrienjoly/chrome-next-step-for-trello.git
$ cd chrome-next-step-for-trello
$ nvm use # switches to the version of Node.js specified in the .nvmrc file
$ npm install # installs development dependencies
$ npm run verify # checks for errors and code style inconsistencies

Open the local version of the extension

  1. In Chrome (or other Chromium-based web browser), open the following URL in a new tab: chrome://extensions
  2. Enable the “developer mode”
  3. If Next Step for Trello is already installed, disable it from that list
  4. Click on “Load unpacked extension”, then select the chrome-next-step-for-trello directory where you setup the project
  5. Go to a Trello board, to make sure that the extension works
  6. Otherwise, check the page’s JavaScript console for errors
  7. After every change, don’t forget to click the “refresh” icon of the local extension, from chrome://extensions

Release a new version on Chrome Web Store

This process is automated, as specified in .github/workflows/ci.yml.