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 |
官方網址 | 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 |
電子郵箱 | [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'" } } |