Ride Receipts

Automation extension to download invoices from Uber's dashboard.

Ride Receipts क्या है?

Ride Receipts https://ridereceipts.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automation extension to download invoices from Uber's dashboard."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ride Receipts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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'"
    }
}