Test Payments

Right-click context menu to add payments test data

Cos'è Test Payments?

Test Payments è un'estensione di Chrome sviluppata da https://facundofarias.github.io, e la sua funzione principale è "Right-click context menu to add payments test data".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Test Payments

Scarica i file di estensione Test Payments in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Test Payments Test Payments
ID lmeopbbdngpgcbdagpjgbdlkcafofpji
URL Ufficiale https://chromewebstore.google.com/detail/test-payments/lmeopbbdngpgcbdagpjgbdlkcafofpji
Descrizione Right-click context menu to add payments test data
Dimensione del File 24.26 KB
Conteggio Installazioni 493
Versione Corrente 0.5
Ultimo Aggiornamento 2015-02-26
Data di Pubblicazione 2015-02-26
Valutazione 3.80/5 Totale 5 Valutazioni
Sviluppatore https://facundofarias.github.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/facundofarias/test-payments
URL della Pagina di Aiuto https://github.com/facundofarias/test-payments
Lingue Supportate 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"
    }
}