Aliexpress without ads

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

Что такое Aliexpress without ads?

Aliexpress without ads - это расширение Chrome, разработанное https://namata.ru, и его основная функция - "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Aliexpress without ads

Скачайте файлы расширений Aliexpress without ads в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Aliexpress without ads Aliexpress without ads
ID kggiiheapofdgaofflggghdblfdlleeg
Официальный URL https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg
Описание This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Размер файла 253 KB
Количество установок 51
Текущая Версия 1.2
Последнее Обновление 2020-04-15
Дата публикации 2020-04-10
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://namata.ru
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://namata.ru/extensions/alinoads
URL страницы помощи http://namata.ru/support/thanksforinstall
Поддерживаемые языки 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\/*"
    ]
}