Pineapple Pay

Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development

Qu'est-ce que Pineapple Pay ?

Pineapple Pay est une extension Chrome développée par Unknown, et sa fonction principale est "Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Pineapple Pay

Téléchargez les fichiers d'extension Pineapple Pay au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Pineapple Pay Pineapple Pay
ID pkohlkkjckhbnapmcmodmnimndfcgpll
URL Officiel https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll
Description Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
Taille du Fichier 62.63 KB
Nombre d'Installations 373
Version Actuelle 1.1
Dernière Mise à Jour 2019-11-05
Date de Publication 2019-11-04
Évaluation 5.00/5 Total 1 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
    }
}