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.”。
扩展截图
下载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 |
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\/*" ] } |