BoA Checklist

This extension adds a persistent checkbox next to BoA transactions.

Wat is BoA Checklist?

BoA Checklist is een Chrome-extensie ontwikkeld door Joseph Gordon, en de belangrijkste functie is "This extension adds a persistent checkbox next to BoA transactions.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie BoA Checklist

Download BoA Checklist-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam BoA Checklist BoA Checklist
ID ionkohebpdbldiapdmjhjjhhkanfieih
Officiële URL https://chromewebstore.google.com/detail/boa-checklist/ionkohebpdbldiapdmjhjjhhkanfieih
Beschrijving This extension adds a persistent checkbox next to BoA transactions.
Bestandsgrootte 29.07 KB
Aantal Installaties 329
Huidige Versie 1.3
Laatst Bijgewerkt 2021-06-12
Publicatiedatum 2018-08-27
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Joseph Gordon
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}