Swiggy Order Stats
An extension to analyze your Swiggy Order Statistics through amazing visualizations.
Swiggy Order Stats란 무엇입니까?
Swiggy Order Stats은(는) Indiapps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to analyze your Swiggy Order Statistics through amazing visualizations."입니다.
확장 프로그램 스크린샷
Swiggy Order Stats 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } } |