Pineapple Pay

Pineapple Pay

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

Merlin
Additional files are visible only to premium users

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"
  }
}