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"
    }
}