@יוסף-חיים-016
תנסה את זה. (קוד לטמפרמונקי)
לא אני יצרתי את זה... רק התאמתי. קרדיט @מוטי-אורן
// ==UserScript==
// @name כרטסת נטפרי
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Add a referral tab to other forums
// @author moti-oren
// @match https://netfree.link/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
(function () {
/*
created by moti-oren
Add a referral tab to other forums
*/
let panel12 = document.createElement('div');
let text12 = document.createElement('div');
let linksArray12 = [
'https://tchumim.com/',
'https://www.prog.co.il/',
'https://www.tora-forum.co.il/',
'https://forum-office.ml/',
'https://xn--9dbazrsfz.com/',
'https://f2.freeivr.co.il/',
'https://www.meatzvim.cf/',
'https://www.techno-tech.cf/',
'https://www.mitmachim.top/'
];
let imagesArray12 = [
'https://mitmachim.top/assets/uploads/files/1602702078674-tchumim.png',
'https://mitmachim.top/assets/uploads/files/1602702061746-prog.png',
'https://www.tora-forum.co.il/ext/tatiana5/favicon/favicon.png',
'https://upload.wikimedia.org/wikipedia/commons/5/5f/Microsoft_Office_logo_%282019%E2%80%93present%29.svg',
'https://mitmachim.top/assets/uploads/files/1602701994040-mk.png',
'https://mitmachim.top/assets/uploads/files/1602704764319-%D7%99%D7%9E%D7%95%D7%AA.png',
'https://meatzvim.cf/assets/uploads/system/favicon.ico',
'https://techno-tech.cf//favicon.ico?v=e4jmu7vr78u',
'https://mitmachim.top//favicon.ico?v=a54dqpiknn4'
];
panel12.addEventListener('mouseenter', (event) => {
panel12.style.width = '60px';
text12.style.transform = 'scale(1, 1)';
for (let image of document.getElementsByClassName('image12')) {
image.style.transform = 'scale(1, 1) translate(0, 0)';
}
});
panel12.addEventListener('mouseleave', (event) => {
panel12.style.width = '15px';
text12.style.transform = 'scale(0, 0)';
for (let image of document.getElementsByClassName('image12')) {
image.style.transform = 'scale(0, 0) translate(-40px, 0)';
}
});
panel12.style.transition = 'width 0.5s';
panel12.style.position = 'fixed';
panel12.style.width = '20px';
panel12.style.height = 'auto';
panel12.style.left = '5px';
panel12.style.bottom = '50%';
panel12.style.transform = 'translate(0, 50%)';
panel12.style.paddingTop = '12px';
panel12.style.paddingBottom = '8px';
panel12.style.flexDirection = 'column';
panel12.style.alignItems = 'center';
panel12.style.justifyContent = 'center';
panel12.style.borderTopRightRadius = '20px';
panel12.style.borderBottomRightRadius = '20px';
panel12.style.backgroundColor = '#e4e8ff';
text12.style.transform = 'scale(0, 0)';
text12.style.transition = '0.5s';
text12.style.display = 'block';
text12.style.marginRight = 'auto';
text12.style.marginBottom = '6px';
text12.style.marginLeft = 'auto';
text12.style.fontFamily = 'Varela Round, sans-serif';
text12.style.lineHeight = '18px';
text12.style.fontWeight = '700';
text12.style.textAlign = 'center';
text12.innerHTML = 'שווה לבקר<br>';
panel12.appendChild(text12);
for (let i in linksArray12) {
let link = document.createElement('a');
link.href = linksArray12[i];
link.target = '_blank';
let image12 = document.createElement('img');
image12.src = imagesArray12[i];
image12.style.display = 'block';
image12.style.margin = 'auto';
image12.style.width = '37px';
image12.style.marginBottom = '15px';
image12.style.transition = '0.5s';
image12.classList.add('image12');
image12.style.transform = 'scale(0, 0) translate(-40px, 0)';
link.appendChild(image12);
panel12.appendChild(link);
};
document.body.appendChild(panel12);
})()
})();