Test Payments

Right-click context menu to add payments test data

Test Payments란 무엇입니까?

Test Payments은(는) https://facundofarias.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Right-click context menu to add payments test data"입니다.

확장 프로그램 스크린샷

screenshot

Test Payments 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Helps to test common payment frameworks with testing data, such as:
- Name, Address, Phone per location.
- Payment test data for providers: 
    1. Stripe
    2. PayPal
    3. Spreedly
    4. BrainTree
    5. MercadoPago
    6. Mango
    7. WorldPay
    8. Adyen
    9. SagePay
    10. Paymill
    11. More are coming!
- Open source and open for modification (https://github.com/facundofarias/test-payments)
- You can also propose new features on GitHub! :)                    

확장 프로그램 기본 정보

이름 Test Payments Test Payments
ID lmeopbbdngpgcbdagpjgbdlkcafofpji
공식 URL https://chromewebstore.google.com/detail/test-payments/lmeopbbdngpgcbdagpjgbdlkcafofpji
설명 Right-click context menu to add payments test data
파일 크기 24.26 KB
설치 횟수 493
현재 버전 0.5
최근 업데이트 2015-02-26
출시 날짜 2015-02-26
평점 3.80/5 총 5 개의 평점
개발자 https://facundofarias.github.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/facundofarias/test-payments
도움말 페이지 URL https://github.com/facundofarias/test-payments
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Test Payments",
    "description": "Right-click context menu to add payments test data",
    "version": "0.5",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "extension.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "context-element.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2,
    "icons": {
        "128": "testpayments.png",
        "16": "testpayments-16.png"
    }
}