Pineapple Pay
Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
Was ist Pineapple Pay?
Pineapple Pay ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development".
Erweiterungsscreenshots
Pineapple Pay-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pineapple Pay-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Pineapple Pay |
ID | pkohlkkjckhbnapmcmodmnimndfcgpll |
Offizielle URL | https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll |
Beschreibung | Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development |
Dateigröße | 62.63 KB |
Installationsanzahl | 373 |
Aktuelle Version | 1.1 |
Letztes Update | 2019-11-05 |
Veröffentlichungsdatum | 2019-11-04 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |