Ride Receipts
Automation extension to download invoices from Uber's dashboard.
Co je Ride Receipts?
Ride Receipts je rozšíření Chrome vyvinuté https://ridereceipts.io, a jeho hlavní funkcí je „Automation extension to download invoices from Uber's dashboard.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Ride Receipts
Stáhněte si soubory rozšíření Ride Receipts ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Ride Receipts |
ID | hpmmiihbgjhnmobopcdjfmjpfopopflc |
Oficiální URL | https://chromewebstore.google.com/detail/ride-receipts/hpmmiihbgjhnmobopcdjfmjpfopopflc |
Popis | Automation extension to download invoices from Uber's dashboard. |
Velikost souboru | 277 KB |
Počet instalací | 320 |
Aktuální Verze | 2.0.5 |
Poslední Aktualizace | 2024-02-05 |
Datum Vydání | 2020-04-12 |
Hodnocení | 3.20/5 Celkem 5 Hodnocení |
Vývojář | https://ridereceipts.io |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://ridereceipts.io/frequently-asked-questions/ |
URL Stránky Zásad Ochrany Soukromí | https://ridereceipts.io/privacy-policy |
Podporované Jazyky | 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'" } } |