Pineapple Pay
Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
Cos'è Pineapple Pay?
Pineapple Pay è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Pineapple Pay
Scarica i file di estensione Pineapple Pay in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Pineapple Pay |
ID | pkohlkkjckhbnapmcmodmnimndfcgpll |
URL Ufficiale | https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll |
Descrizione | Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development |
Dimensione del File | 62.63 KB |
Conteggio Installazioni | 373 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2019-11-05 |
Data di Pubblicazione | 2019-11-04 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |