Ride Receipts
Automation extension to download invoices from Uber's dashboard.
Ride Receipts là gì?
Ride Receipts là một tiện ích mở rộng Chrome được phát triển bởi https://ridereceipts.io, và tính năng chính của nó là "Automation extension to download invoices from Uber's dashboard.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Ride Receipts
Tải xuống các tệp mở rộng Ride Receipts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Ride Receipts |
ID | hpmmiihbgjhnmobopcdjfmjpfopopflc |
URL Chính Thức | https://chromewebstore.google.com/detail/ride-receipts/hpmmiihbgjhnmobopcdjfmjpfopopflc |
Mô tả | Automation extension to download invoices from Uber's dashboard. |
Kích Thước Tệp | 277 KB |
Số Lần Cài Đặt | 320 |
Phiên Bản Hiện Tại | 2.0.5 |
Cập Nhật Lần Cuối | 2024-02-05 |
Ngày Phát Hành | 2020-04-12 |
Đánh Giá | 3.20/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | https://ridereceipts.io |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://ridereceipts.io/frequently-asked-questions/ |
URL Trang Chính Sách Bảo Mật | https://ridereceipts.io/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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'" } } |