Ride Receipts

Automation extension to download invoices from Uber's dashboard.

What is Ride Receipts?

Ride Receipts is a Chrome extension developed by https://ridereceipts.io, and its main feature is "Automation extension to download invoices from Uber's dashboard.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Ride Receipts Extension CRX File

Download Ride Receipts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Automation extension that would download invoices and receipts from logged in Uber's trips dashboard. App is only for people who have purchase Ride Receipts PRO. 

It requires paid license key in order to use the app. For more info please visit our website at https://www.ridereceipts.io. You can purchase license from https://store.ridereceipts.io.

Features:
- Downloading invoices (Including Multiple Invoices for countries like India)
- Downloading receipts
- Advanced filter for time range
- Export all data to CSV
- Download receipts from Uber Eats and generate CSV report.                    

Extension Basic Information

Name Ride Receipts Ride Receipts
ID hpmmiihbgjhnmobopcdjfmjpfopopflc
Official URL https://chromewebstore.google.com/detail/ride-receipts/hpmmiihbgjhnmobopcdjfmjpfopopflc
Description Automation extension to download invoices from Uber's dashboard.
File Size 277 KB
Installation Count 320
Current Version 2.0.5
Last Updated 2024-02-05
Publish Date 2020-04-12
Rating 3.20/5 Total 5 Ratings
Developer https://ridereceipts.io
Email [email protected]
Payment Type free
Help Page URL https://ridereceipts.io/frequently-asked-questions/
Privacy Policy Page URL https://ridereceipts.io/privacy-policy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ride Receipts",
    "version": "2.0.5",
    "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'"
    }
}