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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vasilydshelkov และคุณลักษณะหลักของมันคือ "An extension which allows you to easily use test cards in your test environments"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Test Payment Cards Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}