BoA Checklist

This extension adds a persistent checkbox next to BoA transactions.

Cos'è BoA Checklist?

BoA Checklist è un'estensione di Chrome sviluppata da Joseph Gordon, e la sua funzione principale è "This extension adds a persistent checkbox next to BoA transactions.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione BoA Checklist

Scarica i file di estensione BoA Checklist in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome BoA Checklist BoA Checklist
ID ionkohebpdbldiapdmjhjjhhkanfieih
URL Ufficiale https://chromewebstore.google.com/detail/boa-checklist/ionkohebpdbldiapdmjhjjhhkanfieih
Descrizione This extension adds a persistent checkbox next to BoA transactions.
Dimensione del File 29.07 KB
Conteggio Installazioni 329
Versione Corrente 1.3
Ultimo Aggiornamento 2021-06-12
Data di Pubblicazione 2018-08-27
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Joseph Gordon
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}