Poe.trade ignore list

This extension allows you to blacklist and manage sellers from poe.trade

Что такое Poe.trade ignore list?

Poe.trade ignore list - это расширение Chrome, разработанное Max Arias, и его основная функция - "This extension allows you to blacklist and manage sellers from poe.trade".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Poe.trade ignore list

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

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

                        Poe.trade seller blacklist

Simple extension to hide sellers from your trade search results, for whatever reason.

After installing the extension you'll find a new button besides "Whisper" which adds the seller to your personal blacklist.

Once the seller has been added to the blacklist, he will not appear in the item search results nor the currency search results.

You can manage the blacklist from the extension icon.

You can add multiple users, remove one by one, or remove all.

Github repo: https://github.com/max-arias/poeTradeIgnoreList                    

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

Название Poe.trade ignore list Poe.trade ignore list
ID faapmfhhchgkfinplpkfemkfabngkioc
Официальный URL https://chromewebstore.google.com/detail/poetrade-ignore-list/faapmfhhchgkfinplpkfemkfabngkioc
Описание This extension allows you to blacklist and manage sellers from poe.trade
Размер файла 181 KB
Количество установок 637
Текущая Версия 0.2
Последнее Обновление 2020-07-26
Дата публикации 2016-06-20
Рейтинг 4.40/5 Всего 10 оценок
Разработчик Max Arias
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Poe.trade ignore list",
    "description": "This extension allows you to blacklist and manage sellers from poe.trade",
    "version": "0.2",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "vendor\/jquery-3.0.0.min.js",
                "vendor\/underscore-min.js",
                "js\/main.js"
            ],
            "css": [
                "css\/main.css"
            ],
            "matches": [
                "*:\/\/*.poe.trade\/*"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "images\/poeBlock.png",
        "128": "images\/poeBlock_large.png"
    }
}