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文件

下载Test Payments扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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