Woocommerce Product Extractor

With Woocommerce Product Extractor Chrome extension, listings with Product Name, image, and URL are downloaded to CSV.

什么是Woocommerce Product Extractor?

Woocommerce Product Extractor是由gravitymaster97开发的Chrome扩展程序,该扩展的主要功能是“With Woocommerce Product Extractor Chrome extension, listings with Product Name, image, and URL are downloaded to CSV.”。

扩展截图

screenshot
screenshot

下载Woocommerce Product Extractor扩展crx文件

下载Woocommerce Product Extractor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Creating a similar Chrome extension for WooCommerce would involve developing a new tool with features tailored to WooCommerce's platform. Here's a conceptual outline for a WooCommerce Data Extractor extension:

Introduction

WooCommerce Data Extractor is a powerful Chrome extension designed to enhance your WooCommerce experience. This user-friendly tool simplifies the process of exporting WooCommerce product data, providing a seamless solution for managing and analyzing your online store information.

Key Features

Effortless Export:
-Enjoy the convenience of a one-click export, allowing you to gather all pertinent product data into a neatly organized CSV file.

Bookmarking Made Easy:
-Instantly bookmark your favorite WooCommerce stores with a single click, making it effortless to revisit and manage your preferred online shopping destinations.

Comprehensive Data Export:
-Export product links for a holistic overview.
-Select specific categories or tags for a tailored export experience.
-Handpick individual products or entire product ranges for a customized export.
-Utilize a powerful search feature to find and export specific products efficiently.

Product Insights:
Gain valuable insights before exporting by previewing product details such as descriptions, variations, and prices.

Data Confidentiality:
Rest easy knowing that all your product data is processed locally on your computer. At no point does it traverse our web servers, ensuring the utmost confidentiality. Your store's information remains private, known only to you.

IMPORTANT NOTE:

WooCommerce Data Extractor is an unofficial application and is not affiliated with or endorsed by WooCommerce. It is independently developed and maintained for the convenience of WooCommerce users.

Installation Guide:

-Visit the Chrome Web Store.
-Search for "WooCommerce Data Extractor."
-Click "Add to Chrome" and follow the installation prompts.
-Once installed, you'll find the extension icon in your Chrome toolbar.

Disclaimer:

This extension is not associated with the official WooCommerce site. It is an independent tool developed to enhance the user experience for WooCommerce store owners.                    

扩展基本信息

名称 Woocommerce Product Extractor Woocommerce Product Extractor
ID mobnkgfhkmpfgbnhpiadmjcafoinhjoc
官方URL https://chromewebstore.google.com/detail/woocommerce-product-extra/mobnkgfhkmpfgbnhpiadmjcafoinhjoc
简介 With Woocommerce Product Extractor Chrome extension, listings with Product Name, image, and URL are downloaded to CSV.
文件大小 226 KB
安装次数 49
当前版本 1.0
更新时间 2023-12-02
上架时间 2023-12-02
开发者 gravitymaster97
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://www.codesmade.com/contact-us/
隐私政策页面URL https://www.freeprivacypolicy.com/live/7e8462ff-e50c-4193-9a31-4b8f465c96e6
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Woocommerce Product Extractor",
    "version": "1.0",
    "description": "With Woocommerce Product Extractor Chrome extension, listings with Product Name, image, and URL are downloaded to CSV.",
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}