Shop Safe

A chrome extension that helps to identify where an amazon product is originated from.

Что такое Shop Safe?

Shop Safe - это расширение Chrome, разработанное Shop Safe, и его основная функция - "A chrome extension that helps to identify where an amazon product is originated from.".

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

screenshot

Скачать файл CRX расширения Shop Safe

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

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

                        This is an extension which provides the country information of an amazon product on the product detail page.                    

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

Название Shop Safe Shop Safe
ID helhdfggaejjdpkfkbpfbnchljaobhbp
Официальный URL https://chromewebstore.google.com/detail/shop-safe/helhdfggaejjdpkfkbpfbnchljaobhbp
Описание A chrome extension that helps to identify where an amazon product is originated from.
Размер файла 1.01 MB
Количество установок 182
Текущая Версия 1.0.0
Последнее Обновление 2023-11-07
Дата публикации 2023-11-06
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Shop Safe
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://cromeprivacypolicy.s3.amazonaws.com/safeshop-privacypolicy.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension that helps to identify where an amazon product is originated from.",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Shop Safe",
    "icons": {
        "192": ".\/assets\/icons\/icon-192.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*\/dp\/*",
                "https:\/\/www.amazon.com\/dp\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ]
}