Aliexpress without ads
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Vad är Aliexpress without ads?
Aliexpress without ads är en Chrome-tillägg utvecklad av https://namata.ru, och dess huvudfunktion är "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.".
Tilläggsskärmbilder
Ladda ner Aliexpress without ads-förlängningens CRX-fil
Ladda ner Aliexpress without ads-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Grundläggande Information om Tillägg
Namn | Aliexpress without ads |
ID | kggiiheapofdgaofflggghdblfdlleeg |
Officiell webbadress | https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg |
Beskrivning | This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages. |
Filstorlek | 253 KB |
Antal Installationer | 51 |
Aktuell Version | 1.2 |
Senast Uppdaterad | 2020-04-15 |
Publiceringsdatum | 2020-04-10 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://namata.ru |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://namata.ru/extensions/alinoads |
Hjälpsida URL | http://namata.ru/support/thanksforinstall |
Stödda Språk | 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\/*" ] } |