CC Generator
Generates valid credit card numbers for development use.
什么是CC Generator?
CC Generator是由Claude Banman开发的Chrome扩展程序,该扩展的主要功能是“Generates valid credit card numbers for development use.”。
扩展截图
下载CC Generator扩展crx文件
下载CC Generator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | CC Generator |
ID | klcpekhgaebbghffffpofgaipfcdplkc |
官方URL | https://chromewebstore.google.com/detail/cc-generator/klcpekhgaebbghffffpofgaipfcdplkc |
简介 | Generates valid credit card numbers for development use. |
文件大小 | 19.38 KB |
安装次数 | 2,555 |
当前版本 | 1.3.0 |
更新时间 | 2019-02-01 |
上架时间 | 2019-02-01 |
评分 | 4.08/5 共13次评分 |
开发者 | Claude Banman |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/crbanman/CC_Generator |
帮助页面URL | https://github.com/crbanman/CC_Generator |
支持的语言 | 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" ] } |