An extension that adds a few things to the Raisin UI. Works in any Chrome based browser.
This extension is not affiliated with Raisin. However, if you don't have a Raisin account, please consider using my referral.
Raisin returns your accrued interest in their response body. They do however not show it. This extension does! You can also add a name to your saving accounts. The extension utlilizes chrome.storage.sync
to sync the names to your other devices.
The extension runs only on specific pages. It retrieves data from the Raisin API. It re-uses your current authorization context once to retrieve your account data, for locale and Account ID. The Account ID is needed to retrieve your savings/deposits account and transaction data. This result contains your interest data. This is done for each relevant page, so you always have the most up to date info. The interest data is then shown on the page. The transactions are shown in a graph.
The easiest way to use the extension is to head to the Chrome Web Store and install the extension there.
- Clone/download this repository.
- Open the cloned/downloaded repository in VSCode.
- Open the terminal inside VSCode and run
npm run build
. This compiles the extension code to plain JavaScript and puts it in the/dist
folder. - Head to your browser and type
chrome://extensions
in the address bar. - Ensure you have enabled Developer Mode (the toggle is on the top-right of the browser).
- Click on the button that says
Load unpacked
. - Navigate to the folder where you stored the repo (step 1).
- Select the
/dist
folder (don't go in it!). - The extension is loaded!
Should you want to make changes to the code of the extension, you'll need to update the extension code in Chrome. You can do this on the extensions page by clicking the icon next to the on/off toggle (see image above).