Ride Receipts

Automation extension to download invoices from Uber's dashboard.

Cos'è Ride Receipts?

Ride Receipts è un'estensione di Chrome sviluppata da https://ridereceipts.io, e la sua funzione principale è "Automation extension to download invoices from Uber's dashboard.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Ride Receipts

Scarica i file di estensione Ride Receipts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Ride Receipts Ride Receipts
ID hpmmiihbgjhnmobopcdjfmjpfopopflc
URL Ufficiale https://chromewebstore.google.com/detail/ride-receipts/hpmmiihbgjhnmobopcdjfmjpfopopflc
Descrizione Automation extension to download invoices from Uber's dashboard.
Dimensione del File 277 KB
Conteggio Installazioni 320
Versione Corrente 2.0.5
Ultimo Aggiornamento 2024-02-05
Data di Pubblicazione 2020-04-12
Valutazione 3.20/5 Totale 5 Valutazioni
Sviluppatore https://ridereceipts.io
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://ridereceipts.io/frequently-asked-questions/
URL della Pagina della Politica sulla Privacy https://ridereceipts.io/privacy-policy
Lingue Supportate 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'"
    }
}