Aliexpress without ads
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Was ist Aliexpress without ads?
Aliexpress without ads ist eine Chrome-Erweiterung, die von https://namata.ru entwickelt wurde, und ihr Hauptmerkmal ist "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.".
Erweiterungsscreenshots
Aliexpress without ads-Erweiterungs-CRX-Datei herunterladen
Laden Sie Aliexpress without ads-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Grundlegende Informationen zur Erweiterung
Name | Aliexpress without ads |
ID | kggiiheapofdgaofflggghdblfdlleeg |
Offizielle URL | https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg |
Beschreibung | This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages. |
Dateigröße | 253 KB |
Installationsanzahl | 51 |
Aktuelle Version | 1.2 |
Letztes Update | 2020-04-15 |
Veröffentlichungsdatum | 2020-04-10 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://namata.ru |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://namata.ru/extensions/alinoads |
Hilfeseite URL | http://namata.ru/support/thanksforinstall |
Unterstützte Sprachen | 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\/*" ] } |