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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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