Etsy tags Extractor

show informations about products of Etsy

Что такое Etsy tags Extractor?

Etsy tags Extractor - это расширение Chrome, разработанное drsoft development, и его основная функция - "show informations about products of Etsy".

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

screenshot

Скачать файл CRX расширения Etsy tags Extractor

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

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

                        Etsy tags Extractor for showing tags under each product of result of search                    

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

Название Etsy tags Extractor Etsy tags Extractor
ID lecdnljkjomppcbamokbmojcbjjkebjj
Официальный URL https://chromewebstore.google.com/detail/etsy-tags-extractor/lecdnljkjomppcbamokbmojcbjjkebjj
Описание show informations about products of Etsy
Размер файла 61.6 KB
Количество установок 26
Текущая Версия 1.0.1
Последнее Обновление 2022-05-24
Дата публикации 2022-05-16
Рейтинг 3.00/5 Всего 2 оценок
Разработчик drsoft development
Электронная почта [email protected]
Тип оплаты in_app
Официальный сайт расширения http://extension.podtrand.com
URL страницы политики конфиденциальности http://extension.podtrand.com/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Etsy tags Extractor",
    "description": "show informations about products of Etsy",
    "author": "drsoft",
    "version": "1.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "scripting",
        "declarativeContent"
    ],
    "host_permissions": [
        "https:\/\/*.etsy.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.etsy.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "css": [
                "contentStyle.css"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "script.js"
            ]
        }
    ],
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html",
        "default_title": "Etsy products info",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    }
}