Pineapple Pay
Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
Co to jest Pineapple Pay?
Pineapple Pay to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Pineapple Pay
Pobierz pliki rozszerzeń Pineapple Pay w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Pineapple Pay |
ID | pkohlkkjckhbnapmcmodmnimndfcgpll |
Oficjalny URL | https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll |
Opis | Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development |
Rozmiar pliku | 62.63 KB |
Liczba instalacji | 373 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2019-11-05 |
Data Publikacji | 2019-11-04 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |