Aliexpress without ads
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Wat is Aliexpress without ads?
Aliexpress without ads is een Chrome-extensie ontwikkeld door https://namata.ru, en de belangrijkste functie is "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.".
Extensie Screenshots
Download het CRX-bestand van de extensie Aliexpress without ads
Download Aliexpress without ads-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Basisinformatie over de Extensie
Naam | Aliexpress without ads |
ID | kggiiheapofdgaofflggghdblfdlleeg |
Officiële URL | https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg |
Beschrijving | This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages. |
Bestandsgrootte | 253 KB |
Aantal Installaties | 51 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2020-04-15 |
Publicatiedatum | 2020-04-10 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://namata.ru |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://namata.ru/extensions/alinoads |
Help Pagina-URL | http://namata.ru/support/thanksforinstall |
Ondersteunde Talen | 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\/*" ] } |