Alizon
This extension reveals AliExpress offers on similar Amazon items when shopping!
什么是Alizon?
Alizon是由Winson Luk开发的Chrome扩展程序,该扩展的主要功能是“This extension reveals AliExpress offers on similar Amazon items when shopping!”。
下载Alizon扩展crx文件
下载Alizon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | kjhmlmogadnalkokafehhgdndhcalfhk |
| 官方URL | https://chromewebstore.google.com/detail/alizon/kjhmlmogadnalkokafehhgdndhcalfhk |
| 简介 | This extension reveals AliExpress offers on similar Amazon items when shopping! |
| 文件大小 | 86.09 KB |
| 安装次数 | 17 |
| 当前版本 | 1.1 |
| 更新时间 | 2017-03-30 |
| 上架时间 | 2017-03-29 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Winson Luk |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Alizon",
"description": "This extension reveals AliExpress offers on similar Amazon items when shopping!",
"version": "1.1",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": {
"19": "active19.png",
"38": "active38.png"
},
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"https:\/\/ajax.googleapis.com\/"
],
"background": {
"scripts": [
"background.js",
"jquery-1.11.1.min.js"
]
},
"web_accessible_resources": [
"style.css",
"modal.html",
"modal-script.js"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"jquery-1.11.1.min.js",
"content.js"
],
"run_at": "document_start"
}
]
} | |