Braintree Testing

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

Что такое Braintree Testing?

Braintree Testing - это расширение Chrome, разработанное Diego Iglesias, и его основная функция - "Right-click context menu to fill form elements with Braintree's testing credit cards numbers".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Braintree Testing

Скачайте файлы расширений Braintree Testing в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Braintree Testing Braintree Testing
ID ejnobgjbngckmjfhhgieglmhddcgncil
Официальный URL https://chrome.google.com/webstore/detail/braintree-testing/ejnobgjbngckmjfhhgieglmhddcgncil
Описание Right-click context menu to fill form elements with Braintree's testing credit cards numbers
Размер файла 6.05 KB
Количество установок 214
Текущая Версия 0.1.1
Последнее Обновление 2016-09-26
Дата публикации 2016-09-26
Рейтинг 5.00/5 Всего 6 оценок
Разработчик Diego Iglesias
Тип оплаты free
Официальный сайт расширения https://github.com/diegoiglesias/braintree-testing
Поддерживаемые языки 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"
    }
}