Aliexpress without ads
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Cos'è Aliexpress without ads?
Aliexpress without ads è un'estensione di Chrome sviluppata da https://namata.ru, e la sua funzione principale è "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Aliexpress without ads
Scarica i file di estensione Aliexpress without ads in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Informazioni di Base sull'Estensione
Nome | Aliexpress without ads |
ID | kggiiheapofdgaofflggghdblfdlleeg |
URL Ufficiale | https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg |
Descrizione | This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages. |
Dimensione del File | 253 KB |
Conteggio Installazioni | 51 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2020-04-15 |
Data di Pubblicazione | 2020-04-10 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://namata.ru |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://namata.ru/extensions/alinoads |
URL della Pagina di Aiuto | http://namata.ru/support/thanksforinstall |
Lingue Supportate | 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\/*" ] } |