Pineapple Pay
Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
Wat is Pineapple Pay?
Pineapple Pay is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development".
Extensie Screenshots
Download het CRX-bestand van de extensie Pineapple Pay
Download Pineapple Pay-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Pineapple Pay |
ID | pkohlkkjckhbnapmcmodmnimndfcgpll |
Officiële URL | https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll |
Beschrijving | Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development |
Bestandsgrootte | 62.63 KB |
Aantal Installaties | 373 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2019-11-05 |
Publicatiedatum | 2019-11-04 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |