An extension that converts your selected values into popular units. Saves time, Makes life easier:dancer:
Click on the image below to preview the working of the extension
Be sure to check out our Project 3 Materials for your experiment!
- Clone the repository using
git clone https://github.com/se20z09/units_converter_extension
- In Google Chrome browser open
chrome://extensions/
- Enable
Developer Settings
if it is not enabled - Choose
Load Unpacked
- Select the repository folder that was cloned in the first step
- The extension will now be enabled in Google Chrome
- Screenshot of the extension in action:
- JavaScript
- HTML
- CSS
Source documentation can be found at: Units Converter Extension Docs.
- Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.
- Istanbul with nyc - Local coverage
- Coveralls - Continuous integration coverage
- Code coverage is automatically output on every pull request via Coveralls bot and on every local test via the
npm test
script. - Installation: all necessary modules are installed by running
npm install
from the root directory of the repository.
- All dependencies and static analysis tools can be automatically installed by running
npm install
in the root of the cloned repo after installing Node.js