Aliexpress without ads
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
什么是Aliexpress without ads?
Aliexpress without ads是由https://namata.ru开发的Chrome扩展程序,该扩展的主要功能是“This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.”。
扩展截图
下载Aliexpress without ads扩展crx文件
下载Aliexpress without ads扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages. 扩展基本信息
| 名称 | |
| ID | kggiiheapofdgaofflggghdblfdlleeg |
| 官方URL | https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg |
| 简介 | This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages. |
| 文件大小 | 253 KB |
| 安装次数 | 51 |
| 当前版本 | 1.2 |
| 更新时间 | 2020-04-15 |
| 上架时间 | 2020-04-10 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://namata.ru |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://namata.ru/extensions/alinoads |
| 帮助页面URL | http://namata.ru/support/thanksforinstall |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Aliexpress without ads",
"description": "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.",
"version": "1.2",
"browser_action": {
"default_popup": "popup.html"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.aliexpress.com\/*",
"*:\/\/*.aliexpress.ru\/*"
],
"js": [
"main.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"*:\/\/*.aliexpress.com\/*",
"*:\/\/*.aliexpress.ru\/*"
]
} | |