Pineapple Pay

Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development

Pineapple Payとは何ですか?

Pineapple PayはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development」です。

拡張機能のスクリーンショット

screenshot
screenshot

Pineapple Pay拡張機能のCRXファイルをダウンロード

Pineapple Pay拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Mock the ApplePaySession object available only on Safari & Apple devices, allowing you to handle the basic development of ApplePay from the comfort of Chrome.

Current functionality:
1 - Display the Apple Pay button for elements with the 'apple-pay-button' class
2 - Basic validation that you have implemented the 'onvalidatemerchant' and 'onpaymentauthorized' functionality                    

拡張機能の基本情報

名前 Pineapple Pay Pineapple Pay
ID pkohlkkjckhbnapmcmodmnimndfcgpll
公式URL https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll
説明 Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
ファイルサイズ 62.63 KB
インストール数 373
現在のバージョン 1.1
最終更新日 2019-11-05
公開日 2019-11-04
評価 5.00/5 合計 1 レビュー
開発者 Unknown
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pineapple Pay",
    "description": "Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentScripts.js"
            ],
            "css": [
                "pineappleCss.css"
            ]
        }
    ],
    "short_name": "PineapplePay",
    "version": "1.1",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "icon32.png"
    },
    "icons": {
        "32": "icon32.png",
        "48": "icon48.png"
    }
}