BoA Checklist

This extension adds a persistent checkbox next to BoA transactions.

什麼是BoA Checklist?

BoA Checklist是由Joseph Gordon開發的Chrome擴展程式,該擴展的主要功能是“This extension adds a persistent checkbox next to BoA transactions.”。

擴展截圖

screenshot

下載BoA Checklist擴展crx文件

下載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
官方網址 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\/*"
    ]
}