Aliexpress without ads

This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.

Co to jest Aliexpress without ads?

Aliexpress without ads to rozszerzenie Chrome opracowane przez https://namata.ru, a jego główną funkcją jest „This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Aliexpress without ads

Pobierz pliki rozszerzeń Aliexpress without ads w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.                    

Podstawowe informacje o rozszerzeniu

Nazwa Aliexpress without ads Aliexpress without ads
ID kggiiheapofdgaofflggghdblfdlleeg
Oficjalny URL https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg
Opis This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Rozmiar pliku 253 KB
Liczba instalacji 51
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2020-04-15
Data Publikacji 2020-04-10
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://namata.ru
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://namata.ru/extensions/alinoads
Adres URL Strony Pomocy http://namata.ru/support/thanksforinstall
Obsługiwane Języki 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\/*"
    ]
}