Braintree Testing

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

What is Braintree Testing?

Braintree Testing is a Chrome extension developed by Diego Iglesias, and its main feature is "Right-click context menu to fill form elements with Braintree's testing credit cards numbers".

Extension Screenshots

screenshot

Download Braintree Testing Extension CRX File

Download Braintree Testing extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Braintree Testing Braintree Testing
ID ejnobgjbngckmjfhhgieglmhddcgncil
Official URL https://chrome.google.com/webstore/detail/braintree-testing/ejnobgjbngckmjfhhgieglmhddcgncil
Description Right-click context menu to fill form elements with Braintree's testing credit cards numbers
File Size 6.05 KB
Installation Count 214
Current Version 0.1.1
Last Updated 2016-09-26
Publish Date 2016-09-26
Rating 5.00/5 Total 6 Ratings
Developer Diego Iglesias
Payment Type free
Extension Website https://github.com/diegoiglesias/braintree-testing
Supported Languages 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"
    }
}