Pineapple Pay
Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development
什麼是Pineapple Pay?
Pineapple Pay是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Mock the ApplePaySession API from Safari for easier testing of Apple Pay during development”。
擴展截圖
下載Pineapple Pay擴展crx文件
下載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
擴展基本資訊
名稱 | Pineapple Pay |
ID | pkohlkkjckhbnapmcmodmnimndfcgpll |
官方網址 | 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" } } |