Swiggy Analyser
Analyse your recent orders from Swiggy
什么是Swiggy Analyser?
Swiggy Analyser是由indieNik开发的Chrome扩展程序,该扩展的主要功能是“Analyse your recent orders from Swiggy”。
扩展截图
下载Swiggy Analyser扩展crx文件
下载Swiggy Analyser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple Chrome Extension that helps you analyse your recent orders from Swiggy 扩展基本信息
| 名称 | |
| ID | flpfecimlcggfipmfgnfdkfmpgfopcad |
| 官方URL | https://chromewebstore.google.com/detail/swiggy-analyser/flpfecimlcggfipmfgnfdkfmpgfopcad |
| 简介 | Analyse your recent orders from Swiggy |
| 文件大小 | 29.63 KB |
| 安装次数 | 278 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2021-11-04 |
| 上架时间 | 2021-11-04 |
| 开发者 | indieNik |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://nikhilpatil.in |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Swiggy Analyser",
"version": "1.0.0",
"description": "Analyse your recent orders from Swiggy",
"permissions": [
"https:\/\/www.swiggy.com\/my-account\/orders"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": "logo.png",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/www.swiggy.com\/my-account\/orders"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"manifest_version": 2
} | |