// ==UserScript== // @name BLOXD IO Texture Pack + Legend Trigger // @namespace http://tampermonkey.net/ // @version 0.1 // @description يعرض العبارة "⚡_Super_⚡:" مع خط غامق عند الضغط على Enter في مواقع BLOXD IO أو BLOXD مع تطبيق حزمة القوام // @author You // @match https://bloxd.io/ // @match https://apkpure.bloxd.io/ // @match https://staging.bloxd.io/ // @match https://www.bloxd.io/ // @match https://admin.bloxd.io/ // @grant none // @downloadURL none // ==/UserScript== let pressCount = 0; // عداد الضغطات // رابط حزمة القوام (تأكد من استبداله بالرابط الصحيح لحزمة القوام) const texturePackURL = 'https://example.com/sublight7kpack.zip'; // وظيفة لتحميل وتطبيق القوام function loadTexturePack() { let link = document.createElement('link'); link.rel = 'stylesheet'; link.href = texturePackURL; document.head.appendChild(link); } // حدث عند الضغط على Enter document.addEventListener('keydown', function(event) { if (event.key === 'Enter') { pressCount++; // عرض العبارة "⚡_Super_⚡:" في المرة الأولى والثالثة والخامسة وهكذا if (pressCount % 2 !== 0) { const messageBox = document.activeElement; // العنصر الذي تكتب فيه if (messageBox && messageBox.tagName === "INPUT") { // تأكد من أن العنصر هو صندوق إدخال messageBox.value += " ⚡_Super_⚡:"; } } // تحميل وتطبيق حزمة القوام بعد أول ضغط على Enter if (pressCount === 1) { loadTexturePack(); } } });