BoA Checklist

This extension adds a persistent checkbox next to BoA transactions.

What is BoA Checklist?

BoA Checklist is a Chrome extension developed by Joseph Gordon, and its main feature is "This extension adds a persistent checkbox next to BoA transactions.".

Extension Screenshots

screenshot

Download BoA Checklist Extension CRX File

Download BoA Checklist extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Adds check marks to Bank of America and Chase Credit Card web sites.  The state of the check marks saves in local storage between sessions.

This allows me to "remember" which transactions I've already considered in my budget sheet.                    

Extension Basic Information

Name BoA Checklist BoA Checklist
ID ionkohebpdbldiapdmjhjjhhkanfieih
Official URL https://chromewebstore.google.com/detail/boa-checklist/ionkohebpdbldiapdmjhjjhhkanfieih
Description This extension adds a persistent checkbox next to BoA transactions.
File Size 29.07 KB
Installation Count 329
Current Version 1.3
Last Updated 2021-06-12
Publish Date 2018-08-27
Rating 5.00/5 Total 1 Ratings
Developer Joseph Gordon
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BoA Checklist",
    "description": "This extension adds a persistent checkbox next to BoA transactions.",
    "version": "1.3",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/secure.bankofamerica.com\/*"
            ],
            "js": [
                "injector_boa.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.chase.com\/*"
            ],
            "css": [
                "injector_chase.css"
            ],
            "js": [
                "jquery.js",
                "injector_chase.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/secure.bankofamerica.com\/*"
    ]
}