Swiggy Order Stats

An extension to analyze your Swiggy Order Statistics through amazing visualizations.

Swiggy Order Statsคืออะไร?

Swiggy Order Stats เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Indiapps และคุณลักษณะหลักของมันคือ "An extension to analyze your Swiggy Order Statistics through amazing visualizations."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Swiggy Order Stats

ดาวน์โหลดไฟล์ส่วนขยาย Swiggy Order Stats ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        As Indians, we all order from Swiggy on a regular basis. It has become a crucial part of our lives, and we can't do without it. 

But have we thought about analyzing our own order statistics? 

* What if you are able to analyze and ponder over your monthly spenings on Swiggy?
* What if you are able to understand your own eating patterns?
* What if you are able to find out how much time you spend waiting for your food delivery every day?
* What if you are able to find out the fastest and slowest restaurants in your area?

If you're excited about any of the above questions, we are glad to inform you that our extension has got it all. Try it now!

-------------------------------------
INSTRUCTIONS
-------------------------------------
1. Open https://www.swiggy.com, and login to your account.
2. Navigate to https://www.swiggy.com/my-account/orders. You should now see your most recent orders in the page.
3. Now click the extension icon, and select a date filter.
4. First load should take a minute or two, since we need to fetch the orders afresh. But once they are fetched, you can play around with the date filter buttons, and the data will be updated instantly.

For any assistance/feedback, please reach out to [email protected]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Swiggy Order Stats Swiggy Order Stats
ID pmebbadefknbmnhkkagaleehhoijfdhh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/swiggy-order-stats/pmebbadefknbmnhkkagaleehhoijfdhh
คำอธิบาย An extension to analyze your Swiggy Order Statistics through amazing visualizations.
ขนาดไฟล์ 214 KB
จำนวนการติดตั้ง 5,812
เวอร์ชันปัจจุบัน 0.0.0.6
อัปเดตครั้งล่าสุด 2019-08-12
วันที่เผยแพร่ 2019-08-12
คะแนน 4.58/5 รวมทั้งหมด 43 คะแนน
ผู้พัฒนา Indiapps
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Swiggy Order Stats",
    "version": "0.0.0.6",
    "description": "An extension to analyze your Swiggy Order Statistics through amazing visualizations.",
    "icons": {
        "16": ".\/resources\/restaurant-16.png",
        "48": ".\/resources\/restaurant-48.png",
        "128": ".\/resources\/restaurant-128.png",
        "512": ".\/resources\/restaurant-512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.swiggy.com\/my-account\/orders\/*"
            ],
            "js": [
                ".\/js\/jquery-3.3.1.min.js",
                ".\/js\/jquery.canvasjs.min.js",
                ".\/js\/jquery.dataTables.min.js",
                "commonUtils.js",
                ".\/visualizations\/monthlySpendings.js",
                ".\/visualizations\/topRestaurants.js",
                ".\/visualizations\/topFoods.js",
                ".\/visualizations\/deliveryTimeTrends.js",
                ".\/visualizations\/onTimeAndLateOrders.js",
                ".\/visualizations\/deliverySpeedsTrivia1.js",
                ".\/visualizations\/deliverySpeedsTrivia2.js",
                "content.js"
            ],
            "css": [
                ".\/styles\/custom.css",
                ".\/styles\/jquery.dataTables.min.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": ".\/resources\/restaurant-512.png",
        "default_popup": "popup.html",
        "default_title": "Food Order Stats"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}