DashTrack - Doordash Favorites & More
Track your favorite restaurants & dishes on DoorDash, UberEats, & Grubhub!
Τι είναι το DashTrack - Doordash Favorites & More;
Το DashTrack - Doordash Favorites & More είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον vvictor.llin, και η κύρια λειτουργία του είναι "Track your favorite restaurants & dishes on DoorDash, UberEats, & Grubhub!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης DashTrack - Doordash Favorites & More
Λήψη αρχείων επέκτασης DashTrack - Doordash Favorites & More σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
9/8 Feature: Support on almost all DoorDash restaurants (excluding grocery/convenience/etc.) Track you favorite restaurants from food delivery services like Doordash, UberEats, & Grubhub - All centralized in this completely free addon for chrome. Loved your sushi order from that japanese bar downtown or your burrito from the Mexican street food shop across the city? DashTrack makes it easier than ever to quickly save and edit your favorite Doordash restaurants at the tap of a button. Using the extension is as simple as: 1. Pinning the extension 2. Navigating to your favorite Doordash, Ubereats, or GrubHub restaurant on chrome 3. Clicking the Favorite Button (bottom right) 4. Clicking on the extension icon to load a customized dashboard with all your favorites saved! Download now and start making the most out of your money and food delivery experience with DashTrack! Features to come: * Ability to favorite on restaurant search page * Saving specific dishes on favorited restaurants * Quick-adding saved dishes As an open source project, feel free to contribute at the GitHub repo linked
Βασικές Πληροφορίες Επέκτασης
Όνομα | DashTrack - Doordash Favorites & More |
ID | lnphiciggjdjiilipbmlenmpdlpakhga |
Επίσημο URL | https://chromewebstore.google.com/detail/dashtrack-doordash-favori/lnphiciggjdjiilipbmlenmpdlpakhga |
Περιγραφή | Track your favorite restaurants & dishes on DoorDash, UberEats, & Grubhub! |
Μέγεθος Αρχείου | 569 KB |
Αριθμός Εγκαταστάσεων | 251 |
Τρέχουσα Έκδοση | 1.0.7 |
Τελευταία Ενημέρωση | 2021-09-13 |
Ημερομηνία Δημοσίευσης | 2021-02-20 |
Αξιολόγηση | 4.50/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | vvictor.llin |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/Cozieee/dash-track |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DashTrack - Doordash Favorites & More", "description": "Track your favorite restaurants & dishes on DoorDash, UberEats, & Grubhub!", "version": "1.0.7", "icons": { "128": "images\/dash-track-icon.png" }, "web_accessible_resources": [ "images\/*", "src\/*" ], "browser_action": { "default_icon": "images\/dash-track-icon.png" }, "background": { "scripts": [ "src\/common\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.doordash.com\/*", "https:\/\/www.ubereats.com\/*", "https:\/\/www.grubhub.com\/*" ], "css": [ "src\/third-party\/materialize_inject.min.css", "src\/content-scripts\/components\/styles.css" ], "js": [ "src\/third-party\/require.min.js", "src\/third-party\/require-cs.js", "src\/common\/require-config.js", "src\/content-scripts\/main.js" ] } ], "permissions": [ "storage", "tabs" ] } |