Aliexpress without ads
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
What is Aliexpress without ads?
Aliexpress without ads is a Chrome extension developed by https://namata.ru, and its main feature is "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.".
Extension Screenshots
Download Aliexpress without ads Extension CRX File
Download Aliexpress without ads extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Extension Basic Information
Name | Aliexpress without ads |
ID | kggiiheapofdgaofflggghdblfdlleeg |
Official URL | https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg |
Description | This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages. |
File Size | 253 KB |
Installation Count | 51 |
Current Version | 1.2 |
Last Updated | 2020-04-15 |
Publish Date | 2020-04-10 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://namata.ru |
[email protected] | |
Payment Type | free |
Extension Website | http://namata.ru/extensions/alinoads |
Help Page URL | http://namata.ru/support/thanksforinstall |
Supported Languages | 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\/*" ] } |