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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

CC Generator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    ]
}