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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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\/*" ] } |