Braintree Testing

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

Braintree Testingとは何ですか?

Braintree TestingはDiego Iglesiasによって開発されたChromeの拡張機能で、その主な機能は「Right-click context menu to fill form elements with Braintree's testing credit cards numbers」です。

拡張機能のスクリーンショット

screenshot

Braintree Testing拡張機能のCRXファイルをダウンロード

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"
    }
}