Pineapple Pay

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

Pineapple Pay क्या है?

Pineapple Pay Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Pineapple Pay एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Pineapple Pay Pineapple Pay
ID pkohlkkjckhbnapmcmodmnimndfcgpll
आधिकारिक URL https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll
विवरण Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
फ़ाइल का आकार 62.63 KB
स्थापना संख्या 373
वर्तमान संस्करण 1.1
अंतिम अपडेट 2019-11-05
प्रकाशन तिथि 2019-11-04
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}