BoA Checklist

This extension adds a persistent checkbox next to BoA transactions.

Co to jest BoA Checklist?

BoA Checklist to rozszerzenie Chrome opracowane przez Joseph Gordon, a jego główną funkcją jest „This extension adds a persistent checkbox next to BoA transactions.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia BoA Checklist

Pobierz pliki rozszerzeń BoA Checklist w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa BoA Checklist BoA Checklist
ID ionkohebpdbldiapdmjhjjhhkanfieih
Oficjalny URL https://chromewebstore.google.com/detail/boa-checklist/ionkohebpdbldiapdmjhjjhhkanfieih
Opis This extension adds a persistent checkbox next to BoA transactions.
Rozmiar pliku 29.07 KB
Liczba instalacji 329
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2021-06-12
Data Publikacji 2018-08-27
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Joseph Gordon
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}