Pineapple Pay
Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
O que é Pineapple Pay?
Pineapple Pay é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Pineapple Pay
Baixe arquivos de extensão Pineapple Pay no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Pineapple Pay |
ID | pkohlkkjckhbnapmcmodmnimndfcgpll |
URL Oficial | https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll |
Descrição | Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development |
Tamanho do Arquivo | 62.63 KB |
Contagem de Instalações | 373 |
Versão Atual | 1.1 |
Última Atualização | 2019-11-05 |
Data de Publicação | 2019-11-04 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |