Test Payment Cards Extension

An extension which allows you to easily use test cards in your test environments

什麼是Test Payment Cards Extension?

Test Payment Cards Extension是由vasilydshelkov開發的Chrome擴展程式,該擴展的主要功能是“An extension which allows you to easily use test cards in your test environments”。

擴展截圖

screenshot
screenshot

下載Test Payment Cards Extension擴展crx文件

下載Test Payment Cards Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Currently supports Stripe test cards which can be copied from the extension to save you searching docs

It also allows you save your favourite cards and also immediately shows your recently copied cards                    

擴展基本資訊

名稱 Test Payment Cards Extension Test Payment Cards Extension
ID doodkfllmdadjpkgckmhmmdcdkclgjgc
官方網址 https://chromewebstore.google.com/detail/test-payment-cards-extens/doodkfllmdadjpkgckmhmmdcdkclgjgc
簡介 An extension which allows you to easily use test cards in your test environments
檔案大小 586 KB
安裝次數 140
目前版本 0.0.1
更新時間 2019-09-05
上架時間 2019-08-31
評分 4.00/5 共 1 次評分
開發者 vasilydshelkov
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/VasilyShelkov/test-payment-cards-extension
說明頁面URL https://github.com/VasilyShelkov/test-payment-cards-extension/issues
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.1",
    "short_name": "Test Cards",
    "name": "Test Payment Cards Extension",
    "description": "An extension which allows you to easily use test cards in your test environments",
    "browser_action": {
        "default_title": "Test Cards",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}