BoA Checklist

This extension adds a persistent checkbox next to BoA transactions.

Что такое BoA Checklist?

BoA Checklist - это расширение Chrome, разработанное Joseph Gordon, и его основная функция - "This extension adds a persistent checkbox next to BoA transactions.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения BoA Checklist

Скачайте файлы расширений BoA Checklist в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название BoA Checklist BoA Checklist
ID ionkohebpdbldiapdmjhjjhhkanfieih
Официальный URL https://chromewebstore.google.com/detail/boa-checklist/ionkohebpdbldiapdmjhjjhhkanfieih
Описание This extension adds a persistent checkbox next to BoA transactions.
Размер файла 29.07 KB
Количество установок 329
Текущая Версия 1.3
Последнее Обновление 2021-06-12
Дата публикации 2018-08-27
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Joseph Gordon
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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\/*"
    ]
}