Price List

Collect prices on supported listing pages, show stats, copy to clipboard

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

Δημιουργός
shiftgeist
Ημερήσιες εγκαταστάσεις
0
Σύνολο εγκαταστάσεων
1
Βαθμολογίες
0 0 0
Έκδοση
1.1.0
Δημιουργήθηκε την
13/05/2026
Ενημερώθηκε την
13/05/2026
Μέγεθος
10 KB
Άδεια
GNU GPLv3
Εφαρμόζεται σε

Price List

A userscript that collects all prices on a listing page, computes stats, and copies them to your clipboard — ready to paste into a spreadsheet.

Supported sites

Site Category
eBay (.com / .de / .co.uk / .fr / .it / .es / .at / .ch) General
Kleinanzeigen.de General
mobile.de Cars & motorcycles
AutoScout24.de Cars & motorcycles
1000ps.de / 1000ps.at Motorcycles
Motorrad-Boerse.de Motorcycles

What it does

Click the PRICE LIST button in the bottom-left corner of any supported page.

Count:   42
Average: 412.38
Median:  399.00
Min:     121.00
Max:     699.99

(Prices copied — click to dismiss)

The full price list is also copied to your clipboard as comma-separated values:

370.00,375.00,380.00,399.00,400.00,...

Paste directly into Google Sheets, Excel, or Numbers — no cleanup needed.

Install

Requires Tampermonkey or Violentmonkey.

→ Install script

Details

Locale-aware parsing — handles both European (1.234,56) and US/UK (1,234.56) number formats automatically per domain.

Anti-scraping resilient — eBay injects price digits via CSS content pseudo-elements and hides decoy price spans in the DOM. The script walks the DOM directly rather than reading innerText, and checks aria-hidden ancestry to skip hidden placeholder cards.

Dark mode — the panel respects prefers-color-scheme.

Adding a new site

The script is driven by a registry at the top of the file. Adding a site is appending one object:

{
    name: 'Example',
    hostPattern: /^www\.example\.de$/,
    priceSelector: '.listing-price',  // CSS selector for price elements
    locale: 'eu',                     // 'eu' or 'us'
},

Optional fields:

Field Type Description
locale `'eu' \ 'us' \
filter (el) => boolean Per-element filter applied before parsing.
onCollected ({ prices, stats, button, panel }) => void Hook called after collection, e.g. to scroll to pagination.