Etsy Ad-Free

A simple extension that prevents you from seeing seller ads on the Etsy website.

Что такое Etsy Ad-Free?

Etsy Ad-Free - это расширение Chrome, разработанное ndallas1983, и его основная функция - "A simple extension that prevents you from seeing seller ads on the Etsy website.".

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

screenshot
screenshot

Скачать файл CRX расширения Etsy Ad-Free

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

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

                        When you're searching Etsy for something, you will find that what you're looking for is abruptly overtaken by ads that are sometimes 10x higher in price. This extension will make your experience a bit more honest and show you listings by the natural algorithm, which is based on your search criteria and sorting preference. 

This extension is also useful if you are a seller and do not want to accidentally click on someone's advertisement.                    

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

Название Etsy Ad-Free Etsy Ad-Free
ID lkmidcopffikdeokfcmejoleakoaechf
Официальный URL https://chromewebstore.google.com/detail/etsy-ad-free/lkmidcopffikdeokfcmejoleakoaechf
Описание A simple extension that prevents you from seeing seller ads on the Etsy website.
Размер файла 122 KB
Количество установок 32
Текущая Версия 1.0.0
Последнее Обновление 2023-05-12
Дата публикации 2023-05-12
Рейтинг 3.50/5 Всего 2 оценок
Разработчик ndallas1983
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": {
            "16": "data\/icons\/etsy-ad-free-16.png",
            "32": "data\/icons\/etsy-ad-free-32.png",
            "48": "data\/icons\/etsy-ad-free-48.png",
            "64": "data\/icons\/etsy-ad-free-64.png"
        },
        "default_title": "Etsy Ad-Free"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "foreground.js"
            ],
            "matches": [
                "*:\/\/www.etsy.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "A simple extension that prevents you from seeing seller ads on the Etsy website.",
    "icons": {
        "128": "data\/icons\/etsy-ad-free-128.png",
        "16": "data\/icons\/etsy-ad-free-16.png",
        "32": "data\/icons\/etsy-ad-free-32.png",
        "48": "data\/icons\/etsy-ad-free-48.png",
        "64": "data\/icons\/etsy-ad-free-64.png"
    },
    "manifest_version": 3,
    "name": "Etsy Ad-Free",
    "version": "1.0.0"
}