Test Payment Cards Extension

An extension which allows you to easily use test cards in your test environments

Cos'è Test Payment Cards Extension?

Test Payment Cards Extension è un'estensione di Chrome sviluppata da vasilydshelkov, e la sua funzione principale è "An extension which allows you to easily use test cards in your test environments".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Test Payment Cards Extension

Scarica i file di estensione Test Payment Cards Extension 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

                        Currently supports Stripe test cards which can be copied from the extension to save you searching docs

It also allows you save your favourite cards and also immediately shows your recently copied cards                    

Informazioni di Base sull'Estensione

Nome Test Payment Cards Extension Test Payment Cards Extension
ID doodkfllmdadjpkgckmhmmdcdkclgjgc
URL Ufficiale https://chromewebstore.google.com/detail/test-payment-cards-extens/doodkfllmdadjpkgckmhmmdcdkclgjgc
Descrizione An extension which allows you to easily use test cards in your test environments
Dimensione del File 586 KB
Conteggio Installazioni 140
Versione Corrente 0.0.1
Ultimo Aggiornamento 2019-09-05
Data di Pubblicazione 2019-08-31
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore vasilydshelkov
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/VasilyShelkov/test-payment-cards-extension
URL della Pagina di Aiuto https://github.com/VasilyShelkov/test-payment-cards-extension/issues
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.1",
    "short_name": "Test Cards",
    "name": "Test Payment Cards Extension",
    "description": "An extension which allows you to easily use test cards in your test environments",
    "browser_action": {
        "default_title": "Test Cards",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}