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".
Снимки экрана расширения
Скачать файл CRX расширения Pineapple Pay
Скачайте файлы расширений Pineapple Pay в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| 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"
}
} | |