Braintree Testing

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

Apa itu Braintree Testing?

Braintree Testing adalah ekstensi Chrome yang dikembangkan oleh Diego Iglesias, dan fitur utamanya adalah "Right-click context menu to fill form elements with Braintree's testing credit cards numbers".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Braintree Testing

Unduh file ekstensi Braintree Testing dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Braintree Testing Braintree Testing
ID ejnobgjbngckmjfhhgieglmhddcgncil
URL Resmi https://chrome.google.com/webstore/detail/braintree-testing/ejnobgjbngckmjfhhgieglmhddcgncil
Deskripsi Right-click context menu to fill form elements with Braintree's testing credit cards numbers
Ukuran File 6.05 KB
Jumlah Instalasi 214
Versi Saat Ini 0.1.1
Terakhir Diperbarui 2016-09-26
Tanggal Publikasi 2016-09-26
Penilaian 5.00/5 Total 6 Penilaian
Pengembang Diego Iglesias
Tipe Pembayaran free
Situs Ekstensi https://github.com/diegoiglesias/braintree-testing
Bahasa yang Didukung 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"
    }
}