Aliexpress without ads
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Hvad er Aliexpress without ads?
Aliexpress without ads er en Chrome-udvidelse udviklet af https://namata.ru, og dens hovedfunktion er "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.".
Udvidelsesskærmbilleder
Download Aliexpress without ads-udvidelses-CRX-fil
Download Aliexpress without ads-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Grundlæggende oplysninger om udvidelsen
Navn | Aliexpress without ads |
ID | kggiiheapofdgaofflggghdblfdlleeg |
Officiel URL | https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg |
Beskrivelse | This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages. |
Filstørrelse | 253 KB |
Antal Installationer | 51 |
Nuværende Version | 1.2 |
Senest Opdateret | 2020-04-15 |
Udgivelsesdato | 2020-04-10 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | https://namata.ru |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://namata.ru/extensions/alinoads |
Hjælpeside-URL | http://namata.ru/support/thanksforinstall |
Understøttede Sprog | 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\/*" ] } |