Saturation Doctor
Saturation Doctor
什么是Saturation Doctor?
Saturation Doctor是由SaturationDoctor开发的Chrome扩展程序,该扩展的主要功能是“Saturation Doctor”。
扩展截图
下载Saturation Doctor扩展crx文件
下载Saturation Doctor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Our free AI powered chrome extension analyzes any Aliexpress.com product you are viewing in real time.
Our algorithm searches the internet for stores selling this product on: Shopify, Amazon, Ebay, and other popular ecommerce platforms.
Providing you with a unique score for determining whether you should sell it in your store or not. 扩展基本信息
| 名称 | |
| ID | libhomjlepkocjgjpgolfiahecffmlad |
| 官方URL | https://chromewebstore.google.com/detail/saturation-doctor/libhomjlepkocjgjpgolfiahecffmlad |
| 简介 | Saturation Doctor |
| 文件大小 | 376 KB |
| 安装次数 | 116 |
| 当前版本 | 1.0 |
| 更新时间 | 2020-12-20 |
| 上架时间 | 2020-12-20 |
| 评分 | 3.67/5 共3次评分 |
| 开发者 | SaturationDoctor |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.saturatiod.com |
| 帮助页面URL | https://www.saturatiod.com |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Saturation Doctor",
"version": "1.0",
"description": "Saturation Doctor",
"manifest_version": 2,
"permissions": [
"https:\/\/www.aliexpress.com\/*",
"https:\/\/chrome.google.com\/*",
"storage",
"unlimitedStorage",
"cookies",
"https:\/\/www.saturationd.com\/*"
],
"background": {
"scripts": [
"jquery-3.5.1.min.js",
"background.js"
]
},
"browser_action": {
"default_icon": "icon19.png",
"default_popup": "popup.html",
"default_title": "Saturation Doctor"
},
"minimum_chrome_version": "14",
"content_scripts": [
{
"matches": [
"https:\/\/www.aliexpress.com\/item\/*"
],
"all_frames": false,
"run_at": "document_end",
"js": [
"jquery-3.5.1.min.js",
"js\/toastr.min.js",
"content_script.js"
]
}
],
"icons": {
"19": "icon19.png"
}
} | |