Etsy tags Extractor

show informations about products of Etsy

Cos'è Etsy tags Extractor?

Etsy tags Extractor è un'estensione di Chrome sviluppata da drsoft development, e la sua funzione principale è "show informations about products of Etsy".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Etsy tags Extractor

Scarica i file di estensione Etsy tags Extractor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Etsy tags Extractor Etsy tags Extractor
ID lecdnljkjomppcbamokbmojcbjjkebjj
URL Ufficiale https://chromewebstore.google.com/detail/etsy-tags-extractor/lecdnljkjomppcbamokbmojcbjjkebjj
Descrizione show informations about products of Etsy
Dimensione del File 61.6 KB
Conteggio Installazioni 26
Versione Corrente 1.0.1
Ultimo Aggiornamento 2022-05-24
Data di Pubblicazione 2022-05-16
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore drsoft development
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione http://extension.podtrand.com
URL della Pagina della Politica sulla Privacy http://extension.podtrand.com/privacy-policy
Lingue Supportate 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"
    }
}