Pineapple Pay
Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
Apa itu Pineapple Pay?
Pineapple Pay adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Pineapple Pay
Unduh file ekstensi Pineapple Pay dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Pineapple Pay |
ID | pkohlkkjckhbnapmcmodmnimndfcgpll |
URL Resmi | https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll |
Deskripsi | Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development |
Ukuran File | 62.63 KB |
Jumlah Instalasi | 373 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2019-11-05 |
Tanggal Publikasi | 2019-11-04 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |