Pineapple Pay
Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
Pineapple Pay là gì?
Pineapple Pay là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pineapple Pay
Tải xuống các tệp mở rộng Pineapple Pay dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pineapple Pay |
ID | pkohlkkjckhbnapmcmodmnimndfcgpll |
URL Chính Thức | https://chromewebstore.google.com/detail/pineapple-pay/pkohlkkjckhbnapmcmodmnimndfcgpll |
Mô tả | Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development |
Kích Thước Tệp | 62.63 KB |
Số Lần Cài Đặt | 373 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2019-11-05 |
Ngày Phát Hành | 2019-11-04 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |