Greasy Fork is available in English.

תיקון לגרסאת האייפד של FXP

try to take over the world!!

// ==UserScript==
// @name         תיקון לגרסאת האייפד של FXP
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!!
// @author       You
// @match        https://www.fxp.co.il/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=fxp.co.il
// @grant        GM_addElement
// @run-at       document-start
// @license      MIT 
// @noframes
// ==/UserScript==

if (navigator.userAgent.match(/iPad|iPod/i)) {
    GM_addElement('script', {
        src: 'https://static.fcdn.co.il/clientscript/vbulletin-core.js',
        type: 'text/javascript'
    });
}