Ride Receipts
Automation extension to download invoices from Uber's dashboard.
Ride Receiptsとは何ですか?
Ride Receiptsはhttps://ridereceipts.ioによって開発されたChromeの拡張機能で、その主な機能は「Automation extension to download invoices from Uber's dashboard.」です。
拡張機能のスクリーンショット
Ride Receipts拡張機能のCRXファイルをダウンロード
Ride Receipts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Ride Receipts |
ID | hpmmiihbgjhnmobopcdjfmjpfopopflc |
公式URL | https://chromewebstore.google.com/detail/ride-receipts/hpmmiihbgjhnmobopcdjfmjpfopopflc |
説明 | Automation extension to download invoices from Uber's dashboard. |
ファイルサイズ | 277 KB |
インストール数 | 320 |
現在のバージョン | 2.0.5 |
最終更新日 | 2024-02-05 |
公開日 | 2020-04-12 |
評価 | 3.20/5 合計 5 レビュー |
開発者 | https://ridereceipts.io |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://ridereceipts.io/frequently-asked-questions/ |
プライバシーポリシーページのURL | https://ridereceipts.io/privacy-policy |
対応言語 | 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'" } } |