Ride Receipts

Ride Receipts

Automation extension to download invoices from Uber's dashboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ride Receipts",
  "version": "2.0.6",
  "description": "Automation extension to download invoices from Uber's dashboard.",
  "action": {
    "default_icon": "./assets/Icon-128.png",
    "default_popup": "./dist/popup/index.html"
  },
  "background": {
    "service_worker": "./dist/background/index.mjs"
  },
  "icons": {
    "16": "./assets/Icon-16.png",
    "48": "./assets/Icon-38.png",
    "128": "./assets/Icon-128.png"
  },
  "permissions": [
    "activeTab",
    "downloads",
    "storage"
  ],
  "host_permissions": [
    "*://riders.uber.com/*",
    "*://www.ubereats.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://riders.uber.com/*",
        "*://www.ubereats.com/*"
      ],
      "js": [
        "dist/contentScripts/index.global.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/contentScripts/style.css"
      ],
      "matches": [
        "*://riders.uber.com/*",
        "*://www.ubereats.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}