Ride Receipts
Automation extension to download invoices from Uber's dashboard.
Qu'est-ce que Ride Receipts ?
Ride Receipts est une extension Chrome développée par https://ridereceipts.io, et sa fonction principale est "Automation extension to download invoices from Uber's dashboard.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Ride Receipts
Téléchargez les fichiers d'extension Ride Receipts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Ride Receipts |
ID | hpmmiihbgjhnmobopcdjfmjpfopopflc |
URL Officiel | https://chromewebstore.google.com/detail/ride-receipts/hpmmiihbgjhnmobopcdjfmjpfopopflc |
Description | Automation extension to download invoices from Uber's dashboard. |
Taille du Fichier | 277 KB |
Nombre d'Installations | 320 |
Version Actuelle | 2.0.5 |
Dernière Mise à Jour | 2024-02-05 |
Date de Publication | 2020-04-12 |
Évaluation | 3.20/5 Total 5 Évaluations |
Développeur | https://ridereceipts.io |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://ridereceipts.io/frequently-asked-questions/ |
URL de la Page de Politique de Confidentialité | https://ridereceipts.io/privacy-policy |
Langues Prises en Charge | 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'" } } |