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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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'" } } |