Test Payments

Right-click context menu to add payments test data

Wat is Test Payments?

Test Payments is een Chrome-extensie ontwikkeld door https://facundofarias.github.io, en de belangrijkste functie is "Right-click context menu to add payments test data".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Test Payments

Download Test Payments-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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! :)                    

Basisinformatie over de Extensie

Naam Test Payments Test Payments
ID lmeopbbdngpgcbdagpjgbdlkcafofpji
Officiële URL https://chromewebstore.google.com/detail/test-payments/lmeopbbdngpgcbdagpjgbdlkcafofpji
Beschrijving Right-click context menu to add payments test data
Bestandsgrootte 24.26 KB
Aantal Installaties 493
Huidige Versie 0.5
Laatst Bijgewerkt 2015-02-26
Publicatiedatum 2015-02-26
Beoordeling 3.80/5 Totaal 5 Beoordelingen
Ontwikkelaar https://facundofarias.github.io
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/facundofarias/test-payments
Help Pagina-URL https://github.com/facundofarias/test-payments
Ondersteunde Talen 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"
    }
}