Etsy tags Extractor

show informations about products of Etsy

Etsy tags Extractor là gì?

Etsy tags Extractor là một tiện ích mở rộng Chrome được phát triển bởi drsoft development, và tính năng chính của nó là "show informations about products of Etsy".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Etsy tags Extractor

Tải xuống các tệp mở rộng Etsy tags Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Etsy tags Extractor Etsy tags Extractor
ID lecdnljkjomppcbamokbmojcbjjkebjj
URL Chính Thức https://chromewebstore.google.com/detail/etsy-tags-extractor/lecdnljkjomppcbamokbmojcbjjkebjj
Mô tả show informations about products of Etsy
Kích Thước Tệp 61.6 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2022-05-24
Ngày Phát Hành 2022-05-16
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển drsoft development
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng http://extension.podtrand.com
URL Trang Chính Sách Bảo Mật http://extension.podtrand.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}