Test Payment Cards Extension

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

Qu'est-ce que Test Payment Cards Extension ?

Test Payment Cards Extension est une extension Chrome développée par vasilydshelkov, et sa fonction principale est "An extension which allows you to easily use test cards in your test environments".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Test Payment Cards Extension

Téléchargez les fichiers d'extension Test Payment Cards Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Test Payment Cards Extension Test Payment Cards Extension
ID doodkfllmdadjpkgckmhmmdcdkclgjgc
URL Officiel https://chromewebstore.google.com/detail/test-payment-cards-extens/doodkfllmdadjpkgckmhmmdcdkclgjgc
Description An extension which allows you to easily use test cards in your test environments
Taille du Fichier 586 KB
Nombre d'Installations 140
Version Actuelle 0.0.1
Dernière Mise à Jour 2019-09-05
Date de Publication 2019-08-31
Évaluation 4.00/5 Total 1 Évaluations
Développeur vasilydshelkov
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/VasilyShelkov/test-payment-cards-extension
URL de la Page d'Aide https://github.com/VasilyShelkov/test-payment-cards-extension/issues
Langues Prises en Charge 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"
    ]
}