Etsy tags Extractor

show informations about products of Etsy

What is Etsy tags Extractor?

Etsy tags Extractor is a Chrome extension developed by drsoft development, and its main feature is "show informations about products of Etsy".

Extension Screenshots

screenshot

Download Etsy tags Extractor Extension CRX File

Download Etsy tags Extractor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Etsy tags Extractor Etsy tags Extractor
ID lecdnljkjomppcbamokbmojcbjjkebjj
Official URL https://chromewebstore.google.com/detail/etsy-tags-extractor/lecdnljkjomppcbamokbmojcbjjkebjj
Description show informations about products of Etsy
File Size 61.6 KB
Installation Count 26
Current Version 1.0.1
Last Updated 2022-05-24
Publish Date 2022-05-16
Rating 3.00/5 Total 2 Ratings
Developer drsoft development
Email [email protected]
Payment Type in_app
Extension Website http://extension.podtrand.com
Privacy Policy Page URL http://extension.podtrand.com/privacy-policy
Supported Languages 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"
    }
}