Pineapple Pay
Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
Hvad er Pineapple Pay?
Pineapple Pay er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development".
Udvidelsesskærmbilleder
Download Pineapple Pay-udvidelses-CRX-fil
Download Pineapple Pay-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | pkohlkkjckhbnapmcmodmnimndfcgpll |
| Officiel URL | https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll |
| Beskrivelse | Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development |
| Filstørrelse | 62.63 KB |
| Antal Installationer | 373 |
| Nuværende Version | 1.1 |
| Senest Opdateret | 2019-11-05 |
| Udgivelsesdato | 2019-11-04 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | Unknown |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
} | |