Pineapple Pay
Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
Co je Pineapple Pay?
Pineapple Pay je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Pineapple Pay
Stáhněte si soubory rozšíření Pineapple Pay ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Pineapple Pay |
ID | pkohlkkjckhbnapmcmodmnimndfcgpll |
Oficiální URL | https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll |
Popis | Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development |
Velikost souboru | 62.63 KB |
Počet instalací | 373 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2019-11-05 |
Datum Vydání | 2019-11-04 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Unknown |
Typ Platby | free |
Podporované Jazyky | 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" } } |