Costbell
Chrome extension to help you shop so you can sleep
Costbellคืออะไร?
Costbell เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://costbell.com และคุณลักษณะหลักของมันคือ "Chrome extension to help you shop so you can sleep"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Costbell
ดาวน์โหลดไฟล์ส่วนขยาย Costbell ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Fight Scalpers with Power. Costbell is a fully automated bot that helps you shop highly in-demand products, such as Xbox Series S (XSX), Xbox Series X (XSX), and PS5. This tool automatically checks the inventory on the merchant website and purchase the item for you as soon as the product is back in stock. Features: - AUTO INVENTORY CHECK / PAGE REFRESH - We will automatically refresh the product page and check the inventory for you, so you can spend life on more meaningful stuff. - AUTO CHECKOUT / PLACE ORDER - As soon as we detect the item is back in stock, we will try to checkout and complete the purchase for you, so you can have a sound sleep at night and leave the heavy-lifting to us. - AUTO CART ERROR HANDLING - We will gracefully handle the situation if the item went out of stock while in the shopping cart, just like an actual human. - AUTO CVV ENTERING - If the merchant requires credit card CVV at checkout, you can store your card CVV on the Settings page, and we will automatically fill it for you. - AUTO LOGIN - If for any reason the merchant asks you to login again to complete the purchase, our bot will log you in automatically so you won't miss any buying opportunity. - BROWSER NOTIFICATIONS - We will send you browser notifications when we have the item in the cart or successfully made the purchase, so you are always informed of the good news. - EMAIL NOTIFICATIONS - We will send you email notifications if we've successfully purchased your item, so you always stay in the loop of what's going on without having to be around your computer.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Costbell |
ID | blledejkbfneccjaihhddinaeaceppmk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/costbell/blledejkbfneccjaihhddinaeaceppmk |
คำอธิบาย | Chrome extension to help you shop so you can sleep |
ขนาดไฟล์ | 663 KB |
จำนวนการติดตั้ง | 501 |
เวอร์ชันปัจจุบัน | 2.9.5 |
อัปเดตครั้งล่าสุด | 2022-08-23 |
วันที่เผยแพร่ | 2016-06-06 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://costbell.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.costbell.com/ |
URL หน้าช่วยเหลือ | https://www.costbell.com/ |
URL หน้านโยบายความเป็นส่วนตัว | https://costbell.com/privacy-policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Costbell", "description": "Chrome extension to help you shop so you can sleep", "version": "2.9.5", "manifest_version": 2, "background": { "scripts": [ "\/lib\/firebase-app.js", "\/lib\/firebase-firestore.js", "\/lib\/firebase-remote-config.js", "\/configs\/firebase_init.js", "background.js" ], "persistent": true }, "permissions": [ "storage", "activeTab", "notifications" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/costbell_logo.png", "32": "\/images\/costbell_logo.png", "48": "\/images\/costbell_logo.png", "128": "\/images\/costbell_logo.png", "512": "\/images\/costbell_logo.png" } }, "icons": { "16": "\/images\/costbell_logo.png", "32": "\/images\/costbell_logo.png", "48": "\/images\/costbell_logo.png", "128": "\/images\/costbell_logo.png", "512": "\/images\/costbell_logo.png" }, "options_page": "\/options\/options.html", "author": "Costbell", "content_scripts": [ { "matches": [ "https:\/\/*.target.com\/*" ], "css": [ "\/styles\/content.css" ], "all_frames": true, "js": [ "\/lib\/jquery.js", "\/lib\/sendkeys.js", "\/utils\/utils.js", "\/domains\/target.js" ] }, { "matches": [ "https:\/\/*.bestbuy.com\/*" ], "css": [ "\/styles\/content.css" ], "all_frames": true, "js": [ "\/lib\/jquery.js", "\/lib\/sendkeys.js", "\/lib\/keysim.js", "\/utils\/utils.js", "\/domains\/bestbuy.js" ] }, { "matches": [ "https:\/\/*.xbox.com\/*", "https:\/\/*.microsoft.com\/*", "https:\/\/*.live.com\/*" ], "css": [ "\/styles\/content.css" ], "all_frames": true, "js": [ "\/lib\/jquery.js", "\/lib\/sendkeys.js", "\/utils\/utils.js", "\/domains\/microsoft.js" ] }, { "matches": [ "https:\/\/*.gamestop.com\/*" ], "css": [ "\/styles\/content.css" ], "all_frames": true, "js": [ "\/lib\/jquery.js", "\/lib\/sendkeys.js", "\/utils\/utils.js", "\/domains\/gamestop.js" ] }, { "matches": [ "https:\/\/*.amazon.ca\/*", "https:\/\/*.amazon.ca\/*", "https:\/\/*.amazon.de\/*", "https:\/\/*.amazon.fr\/*" ], "css": [ "\/styles\/content.css" ], "all_frames": true, "js": [ "\/lib\/jquery.js", "\/utils\/utils.js", "\/domains\/amazon.js" ] } ] } |