// ==UserScript==
// @name Ozon ID на URL
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Заменяет "начисление за товар <ID>" на URL-адрес товара
// @match https://www.ozon.ru/my/points
// @grant none
// ==/UserScript==
(function() {
'use strict';
function replaceIdsWithLinks() {
document.querySelectorAll('div.i7y_27').forEach(div => {
const text = div.innerText || '';
const regex = /начисление за товар (\d+)/i; // ищем "начисление за товар" и число
const match = text.match(regex);
if (match && match[1]) {
const id = match[1];
const url = `https://www.ozon.ru/product/${id}/`;
const linkHTML = `<a href="${url}" target="_blank">${url}</a>`;
div.innerHTML = div.innerHTML.replace(regex, linkHTML);
}
});
}
window.addEventListener('load', () => {
replaceIdsWithLinks();
setInterval(replaceIdsWithLinks, 2000);
});
})();