Test Payment Cards Extension

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

Test Payment Cards Extension là gì?

Test Payment Cards Extension là một tiện ích mở rộng Chrome được phát triển bởi vasilydshelkov, và tính năng chính của nó là "An extension which allows you to easily use test cards in your test environments".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Test Payment Cards Extension

Tải xuống các tệp mở rộng Test Payment Cards Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Test Payment Cards Extension Test Payment Cards Extension
ID doodkfllmdadjpkgckmhmmdcdkclgjgc
URL Chính Thức https://chromewebstore.google.com/detail/test-payment-cards-extens/doodkfllmdadjpkgckmhmmdcdkclgjgc
Mô tả An extension which allows you to easily use test cards in your test environments
Kích Thước Tệp 586 KB
Số Lần Cài Đặt 140
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2019-09-05
Ngày Phát Hành 2019-08-31
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển vasilydshelkov
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/VasilyShelkov/test-payment-cards-extension
URL Trang Trợ Giúp https://github.com/VasilyShelkov/test-payment-cards-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}