CC Generator
Generates valid credit card numbers for development use.
CC Generator là gì?
CC Generator là một tiện ích mở rộng Chrome được phát triển bởi Claude Banman, và tính năng chính của nó là "Generates valid credit card numbers for development use.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CC Generator
Tải xuống các tệp mở rộng CC Generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Changes in v1.3: - add menu item when right clicking to quickly generate a new number for the selected card - New Permission required for modifying clipboard which is used to copy generated number to the clipboard **Disclaimer: Credit card numbers generated by this extensions should be used for development purposes only. Do not attempt to use any of these numbers for real life transactions. Attempting to use one of these numbers in a real transaction is considered fraud and I will not be held accountable for any legal ramifications you may receive. FAQ Q: What about the CVV? A: As these are for fake developement transactions, you can use any random 3 or 4 numbers. Q: Expiry date? A: Same as CVV. Just use a future date. Q: Can these be used in real life transactions? A: No! Any attempts to do so are considered fraud and you may face legal ramifications if you do. If you have any other questions, suggestions, or issues you can contact me through the form on the support tab. Want to help improve this credit card generator? Fork this project on GitHub and send a pull request: https://github.com/crbanman/CC_Generator
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CC Generator |
ID | klcpekhgaebbghffffpofgaipfcdplkc |
URL Chính Thức | https://chromewebstore.google.com/detail/cc-generator/klcpekhgaebbghffffpofgaipfcdplkc |
Mô tả | Generates valid credit card numbers for development use. |
Kích Thước Tệp | 19.38 KB |
Số Lần Cài Đặt | 2,555 |
Phiên Bản Hiện Tại | 1.3.0 |
Cập Nhật Lần Cuối | 2019-02-01 |
Ngày Phát Hành | 2019-02-01 |
Đánh Giá | 4.08/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | Claude Banman |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/crbanman/CC_Generator |
URL Trang Trợ Giúp | https://github.com/crbanman/CC_Generator |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CC Generator", "description": "Generates valid credit card numbers for development use.", "version": "1.3.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "CC Generator" }, "background": { "scripts": [ "eventPage.js", "ccFunctions.js" ], "persistent": false }, "permissions": [ "storage", "contextMenus", "clipboardWrite" ] } |