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
官方網址 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"
    }
}