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.
擴展基本資訊
名稱 | Aliexpress without ads |
ID | kggiiheapofdgaofflggghdblfdlleeg |
官方網址 | 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\/*" ] } |