YM Real Price

YM Real Price: An unofficial script for market.yandex.ru that displays each item’s original price directly on the list page. This script is not affiliated with or endorsed by Yandex. It runs entirely on the client side—parsing only publicly available DOM data—without using any private APIs or collecting/transmitting your personal information. Use at your own risk: changes to Yandex.Market’s page structure may break functionality, and the author accepts no liability for any resulting damages.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

作者
coolhacker
日安装量
0
总安装量
4
评分
0 0 0
版本
0.1
创建于
2025-06-30
更新于
2025-06-30
大小
4.6 KB
许可证
MIT
适用于

YM Real Price

YM Real Price is an unofficial userscript for Yandex.Market that injects each item’s original (strikethrough) price directly into search results, scrollboxes, recommendation rolls and carousels.

⚠️ Disclaimer

  • Unofficial: not affiliated with or endorsed by Yandex.
  • Client-side only: parses publicly available DOM data, no private APIs, no personal data collected or transmitted.
  • Use at your own risk: changes to Yandex.Market’s HTML may break the script.
  • License: MIT.

✨ Features

✨ Features

  • Shows the original price (the crossed-out price from the product page) directly in your item listings.
  • Works on: search results, recommendation panels, carousels and scroll boxes.
  • Updates automatically as you scroll or load more items—no extra clicks needed.

🚀 Installation on Greasemonkey / Tampermonkey

  1. Click the “Install this script” button at the top of this page.
  2. Confirm in your userscript manager.
  3. Navigate to any https://market.yandex.ru/* page and see the original prices appear.

⚙️ Configuration

If you need to tweak which elements or zones are targeted, edit these constants in the script header:

const SELECTOR_LINK       = '[data-auto="snippet-link"]';
const SELECTOR_OLD_PRICE  = '[data-auto="snippet-price-old"]';
const SELECTOR_CONTAINERS = [
  '[data-zone-name="ScrollBox"]',
  '[data-zone-name="searchPage"]',
  '[data-zone-name="RecommendationRoll"]',
  '[data-zone-name="carouselWithLogo"]'
].join(',');
const ZONE_PRICE = 'price';