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
公式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
Eメール [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\/*"
    ]
}