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
官方URL 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"
    ]
}