Test Payment Cards Extension

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

Wat is Test Payment Cards Extension?

Test Payment Cards Extension is een Chrome-extensie ontwikkeld door vasilydshelkov, en de belangrijkste functie is "An extension which allows you to easily use test cards in your test environments".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Test Payment Cards Extension

Download Test Payment Cards Extension-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

                        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                    

Basisinformatie over de Extensie

Naam Test Payment Cards Extension Test Payment Cards Extension
ID doodkfllmdadjpkgckmhmmdcdkclgjgc
Officiële URL https://chromewebstore.google.com/detail/test-payment-cards-extens/doodkfllmdadjpkgckmhmmdcdkclgjgc
Beschrijving An extension which allows you to easily use test cards in your test environments
Bestandsgrootte 586 KB
Aantal Installaties 140
Huidige Versie 0.0.1
Laatst Bijgewerkt 2019-09-05
Publicatiedatum 2019-08-31
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar vasilydshelkov
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/VasilyShelkov/test-payment-cards-extension
Help Pagina-URL https://github.com/VasilyShelkov/test-payment-cards-extension/issues
Ondersteunde Talen 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"
    ]
}