Test Payments

Test Payments

Right-click context menu to add payments test data

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Test Payments",
  "description": "Right-click context menu to add payments test data",
  "version": "0.5",
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "extension.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "context-element.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "manifest_version": 2,
  "icons": {
    "16": "testpayments-16.png",
    "128": "testpayments.png"
  }
}