Dakidex Scraper

Scrape product details and open a new tab with the data

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Dakidex Scraper
// @namespace    http://dakidex.com
// @version      1.5
// @description  Scrape product details and open a new tab with the data
// @author       Dakidex
// @match        http*://booth.pm/*/items/*
// @match        http*://*.booth.pm/items/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

    class ProductScraper {
        static async scrape() {
            const title = document.querySelector('.summary h2')?.textContent?.trim();
            const price = document.querySelector('.variation-price')?.textContent;

            let productUrl = window.location.href;
            const realUrl = document.querySelector('a[data-product-list="from market_show via market_item_detail to shop_index"]')?.href;
            if (realUrl) {
                productUrl = realUrl + "items/" + productUrl.split('/').pop();
            }

            // Parse product images
            let imageUrls = [];
            const imageElements = document.querySelectorAll('.market-item-detail-item-image-wrapper img');
            imageElements.forEach(img => {
                const imageUrl = img.getAttribute('data-origin') ?? img.getAttribute('src');
                if (imageUrl) {
                    imageUrls.push(imageUrl);
                }
            });

            // Ensure imageUrls are unique
            imageUrls = [...new Set(imageUrls)];
            // Move first image to last if there are more than 1 image
            if (imageUrls.length > 1) {
                imageUrls.push(imageUrls.shift());
            }

            const data = {
                name: title || '',
                price: this.parsePrice(price || ''),
                currency: 'JPY',
                urls: [productUrl],
                variants: [{
                    name: 'Default',
                    imageUrls: imageUrls,
                    nsfw: true
                }]
            };

            const encodedData = btoa(encodeURIComponent(JSON.stringify(data)));
            window.open(`https://dakidex.com/create?data=${encodedData}`, '_blank');
        }

        static parsePrice(price) {
            return Number(price.replace(/[^0-9]/g, ''));
        }
    }

    // Add a button to trigger the scraping
    const button = document.createElement('button');
    button.textContent = 'Add to Dakidex';
    button.style.position = 'fixed';
    button.style.bottom = '10px';
    button.style.right = '10px';
    button.style.zIndex = 1000;
    button.style.padding = '10px';
    button.style.borderRadius = '6px';
    button.style.fontWeight = 'bold'; // Made font bold
    button.style.backgroundColor = 'rgba(112, 112, 112, 0.7)'; // 70% gray background
    button.style.color = 'white'; // White text
    button.addEventListener('click', () => ProductScraper.scrape());
    document.body.appendChild(button);
})();