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
Eメール [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"
    ]
}