DashTrack - Doordash Favorites & More

Track your favorite restaurants & dishes on DoorDash, UberEats, & Grubhub!

DashTrack - Doordash Favorites & More란 무엇입니까?

DashTrack - Doordash Favorites & More은(는) vvictor.llin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Track your favorite restaurants & dishes on DoorDash, UberEats, & Grubhub!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

DashTrack - Doordash Favorites & More 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    ]
}