Ramp for Chrome

Ramp for Chrome

The best way to experience Ramp in your browser. Easily find your card info, submit receipt, and receive helpful tips.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "The best way to experience Ramp in your browser. Easily find your card info, submit receipt, and receive helpful tips.",
  "version": "0.4.5",
  "manifest_version": 3,
  "name": "Ramp for Chrome",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzf0g4gqQU4aguBfxteOkK/LTjZo6RTpGl72szTapKI0sKcVaWNHWZ4UBqOqjjMZN9m3pAUgZrq6cO9jttazNh/piE4lF49xOzOllq6QCnigPb/5fp2MhUNWZJzjwln8Wyd4lhtX4hQP57KwvJU+YR8OlZKZazIKvw84kE7yJN6Eb4psW/ssQnKK2FjBgzAbDzRxk3XbnPHQNjadbIfb0dEqJuTMnnIVlpweQ7PKWLF7mcoX0r5+BrXw5BmYmvUyfWVaZ9kFpBHY3ZsKjZaNIaVg+iwCoycWlD4U1igCl0wOFTFVULaQuDOI+3jtcMuHqFQ56nuEFh2vBeg0HCOREHQIDAQAB",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_icon": "icon-34.png",
    "default_popup": "popup.html?popup=true"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://ramp.com/*",
        "https://*.ramp.com/*"
      ],
      "all_frames": false,
      "run_at": "document_start",
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.ramp.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.css",
        "popup.html",
        "notice.html",
        "icon-34.png",
        "fonts"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}