Etsy tags Extractor

show informations about products of Etsy

O que é Etsy tags Extractor?

Etsy tags Extractor é uma extensão do Chrome desenvolvida por drsoft development, e sua principal característica é "show informations about products of Etsy".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Etsy tags Extractor

Baixe arquivos de extensão Etsy tags Extractor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Etsy tags Extractor Etsy tags Extractor
ID lecdnljkjomppcbamokbmojcbjjkebjj
URL Oficial https://chromewebstore.google.com/detail/etsy-tags-extractor/lecdnljkjomppcbamokbmojcbjjkebjj
Descrição show informations about products of Etsy
Tamanho do Arquivo 61.6 KB
Contagem de Instalações 26
Versão Atual 1.0.1
Última Atualização 2022-05-24
Data de Publicação 2022-05-16
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor drsoft development
Email [email protected]
Tipo de Pagamento in_app
Site da Extensão http://extension.podtrand.com
URL da Página de Política de Privacidade http://extension.podtrand.com/privacy-policy
Idiomas Suportados 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"
    }
}