eBay Real Sell Price

Shows the real sold price for eBay items

Что такое eBay Real Sell Price?

eBay Real Sell Price - это расширение Chrome, разработанное nathan.huff89, и его основная функция - "Shows the real sold price for eBay items".

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

screenshot

Скачать файл CRX расширения eBay Real Sell Price

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

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

                        This lightweight browser extension will show you the actual sold price for completed eBay listings when a Best Offer was accepted.                    

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

Название eBay Real Sell Price eBay Real Sell Price
ID lcmdfjmgigndemlclpkpnjoocbedaneg
Официальный URL https://chromewebstore.google.com/detail/ebay-real-sell-price/lcmdfjmgigndemlclpkpnjoocbedaneg
Описание Shows the real sold price for eBay items
Размер файла 16.81 KB
Количество установок 68
Текущая Версия 1.0
Последнее Обновление 2020-10-07
Дата публикации 2020-10-07
Рейтинг 1.00/5 Всего 2 оценок
Разработчик nathan.huff89
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "eBay Real Sell Price",
    "description": "Shows the real sold price for eBay items",
    "version": "1.0",
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.ebay.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}