Woocommerce Product Extractor

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

O que é Woocommerce Product Extractor?

Woocommerce Product Extractor é uma extensão do Chrome desenvolvida por gravitymaster97, e sua principal característica é "With Woocommerce Product Extractor Chrome extension, listings with Product Name, image, and URL are downloaded to CSV.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Woocommerce Product Extractor

Baixe arquivos de extensão Woocommerce Product 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

                        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.                    

Informações Básicas da Extensão

Nome Woocommerce Product Extractor Woocommerce Product Extractor
ID mobnkgfhkmpfgbnhpiadmjcafoinhjoc
URL Oficial https://chromewebstore.google.com/detail/woocommerce-product-extra/mobnkgfhkmpfgbnhpiadmjcafoinhjoc
Descrição With Woocommerce Product Extractor Chrome extension, listings with Product Name, image, and URL are downloaded to CSV.
Tamanho do Arquivo 226 KB
Contagem de Instalações 49
Versão Atual 1.0
Última Atualização 2023-12-02
Data de Publicação 2023-12-02
Desenvolvedor gravitymaster97
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://www.codesmade.com/contact-us/
URL da Página de Política de Privacidade https://www.freeprivacypolicy.com/live/7e8462ff-e50c-4193-9a31-4b8f465c96e6
Idiomas Suportados 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"
            ]
        }
    ]
}