Pineapple Pay

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

ما هو Pineapple Pay؟

Pineapple Pay هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Pineapple Pay

قم بتنزيل ملفات الامتداد Pineapple Pay بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}