Braintree Testing

Right-click context menu to fill form elements with Braintree's testing credit cards numbers

Co je Braintree Testing?

Braintree Testing je rozšíření Chrome vyvinuté Diego Iglesias, a jeho hlavní funkcí je „Right-click context menu to fill form elements with Braintree's testing credit cards numbers“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Braintree Testing

Stáhněte si soubory rozšíření Braintree Testing ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Easily test Braintree credit cards by just right clicking on form field, text areas or content editable divs. Insert successful and unsuccessful credit cards: Visa, MasterCard, Maestro, JCB, American Express and Discover.

Basically it's a simplified version of Test Payments but focused on Braintree.                    

Základní Informace o Rozšíření

Název Braintree Testing Braintree Testing
ID ejnobgjbngckmjfhhgieglmhddcgncil
Oficiální URL https://chrome.google.com/webstore/detail/braintree-testing/ejnobgjbngckmjfhhgieglmhddcgncil
Popis Right-click context menu to fill form elements with Braintree's testing credit cards numbers
Velikost souboru 6.05 KB
Počet instalací 214
Aktuální Verze 0.1.1
Poslední Aktualizace 2016-09-26
Datum Vydání 2016-09-26
Hodnocení 5.00/5 Celkem 6 Hodnocení
Vývojář Diego Iglesias
Typ Platby free
Webové stránky Rozšíření https://github.com/diegoiglesias/braintree-testing
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Braintree Testing",
    "description": "Right-click context menu to fill form elements with Braintree's testing credit cards numbers",
    "version": "0.1.1",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "extension.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "context-element.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2,
    "icons": {
        "16": "fa-credit-card_16_0_000000_none.png",
        "128": "fa-credit-card_128_0_000000_none.png"
    }
}