3 197
مشترکین
+124 ساعت
-107 روز
-4130 روز
آرشیو پست ها
3 197
// ==UserScript==
// @name BLS AUTO LOGIN
// @namespace http://tampermonkey.net/
// @version 2023
// @description BLS AUTO LOGIN/ ACCES AUTOMATIQUE A VOTRE COMPTE
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @author BENAISSA FOUAD
// @match https://algeria.blsspainglobal.com/DZA/Account/LogIn*
// @match https://algeria.blsspainglobal.com/DZA/account/login*
// @grant none
// ==/UserScript==
if (!document.getElementsByTagName('title')[0].textContent.toLowerCase().includes("gateway")) {
var Name = ["login"];
var data = [
{
mail: "benaissafouad@outlook.com",
password: "123456789"
},
];
}
function setValues(mail, password) {
document.getElementById('UserId1').value = mail;
document.getElementById('UserId2').value = mail;
document.getElementById('UserId3').value = mail;
document.getElementById('UserId4').value = mail;
document.getElementById('UserId5').value = mail;
document.getElementById('UserId6').value = mail;
document.getElementById('UserId7').value = mail;
document.getElementById('UserId8').value = mail;
document.getElementById('UserId9').value = mail;
document.getElementById('UserId10').value = mail;
document.getElementById('Password1').value = password;
document.getElementById('Password2').value = password;
document.getElementById('Password3').value = password;
document.getElementById('Password4').value = password;
document.getElementById('Password5').value = password;
document.getElementById('Password6').value = password;
document.getElementById('Password7').value = password;
document.getElementById('Password8').value = password;
document.getElementById('Password9').value = password;
document.getElementById('Password10').value = password;
}
var j = 0;
for (var i = 0; i <= 0; i++) {
var button = document.createElement('input');
button.value = 'PRS ' + (i + 1);
button.id = 'formulaire' + j;
// CSS styles
button.style =
cursor: pointer; border: 3px solid #000; font-size: 20px; padding: 6px; width: 100px; margin-bottom: 4px;
background-color: #a91515; /* Background color */ color: #ffffff; /* Text color */ border-radius: 5px; /* Rounded corners */
text-align: center; /* Center text horizontally */ text-decoration: none; /* Remove underlines from links */
display: inline-block; /* Display as inline-block */ transition: background-color 0.3s; /* Transition effect on hover */
;
// buttons add and event listener
button.addEventListener("mouseover", function () {
this.style.backgroundColor = "#29B980"; // Darker background on hover
});
button.addEventListener("mouseout", function () {
this.style.backgroundColor = "#29B980"; // Restore the original background on mouseout
});
// Insert the button before the form
document.getElementsByTagName('form')[0].parentNode.insertBefore(button, document.getElementsByTagName('form')[0]);
// Assign an event handler for each button
button.addEventListener("click", function (index) {
return function () {
var mail = data[index].mail;
var password = data[index].password;
setValues(mail, password);
};
}(i));
j++;
}
(function() {
var PRS1 = document.getElementById('formulaire0'); // Replace with the correct button ID
PRS1.click();
var buttonVerify = document.getElementById('btnVerify'); // Replace with the correct button ID
buttonVerify.click();
setTimeout(function () {
var buttonVerify = document.getElementById('formulaire0'); // Replace with the correct button ID
buttonVerify.click();
}, 2000);
// Benaissa Fouad email: benaissafouad@outlook.com whatsapp:+213 553 xx xx xx
})();3 197
السلام عليكم خاوتي
سكريبت هذا اكتبو الايمايل و الباسوورد يكونيكتي اوتوماتيك سيليسكيوني الكابتشا فقط
3 197
السلام عليكم .. الخاوة حاولو تفهمو السكريبت مليح و طلعوه و اخدمو بيه
رانا نوجدو فالبوت لي هو اكثر تعقيدا من السكريبت لازم تكونو متمرسين بش تجيكم الامور ساهلة و تلقاو رواحكم بسرعة
و بالتوفيق للجميع 🇵🇸🇵🇸
3 197
Script Auto_Page_Reload_on_Error_and_Gateway_Problem_Fixer
// ==UserScript==
// @name Auto_Page_Reload_on_Error_and_Gateway_Problem_Fixer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author @Ahmed
// @match *://*.algeria.blsspainglobal.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.log("code start")
var time = 1000;
const titles = ['504 Gateway Time-out','403 Forbidden', 'Problem loading page','503 Service Temporarily Unavailable','Service Unavailable','500 Internal Server Error','Database error','FastCGI Error','The connection has timed out','Problemas al cargar la página','Error 502 (Server Error)!!1'];
const HeadingText = ['502 Bad Gateway','Service Unavailable','403 ERROR','Error 503 Service Unavailable','404 Not Found','504 Gateway Time-out','This page isn’t working'];
const myBody = ['Scheduled maintenance is under progress'];
var myTitle = document.title;
if(document.body.childElementCount <= 1 || titles.includes(myTitle)){
console.log("code here")
setTimeout(function() {
window.location.reload(true);
}, time);
}else if(( HeadingText.includes(document.getElementsByTagName('h1')[0].innerText))){
setTimeout(function() {
window.location.reload(true);
}, time);
}
console.log("End of code")
})();
3 197
خاوتي نعطيكم معلومة سريعة كاينة ناس تفرجت الفيديو لي درناه و فهموه و طبقوه و خدمو السكريبت وحدهم و راهم يبيعو فيه للناس و حنا حطينالكم كلش مجانا !!!!!
3 197
// ==UserScript==
// @name Auto_Page_Reload_on_Error_and_Gateway_Problem_Fixer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author @Ahmed
// @match *://*.algeria.blsspainglobal.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.log("code start")
var time = 1000;
const titles = ['504 Gateway Time-out','403 Forbidden', 'Problem loading page','503 Service Temporarily Unavailable','Service Unavailable','500 Internal Server Error','Database error','FastCGI Error','The connection has timed out','Problemas al cargar la página','Error 502 (Server Error)!!1'];
const HeadingText = ['502 Bad Gateway','Service Unavailable','403 ERROR','Error 503 Service Unavailable','404 Not Found','504 Gateway Time-out','This page isn’t working'];
const myBody = ['Scheduled maintenance is under progress'];
var myTitle = document.title;
if(document.body.childElementCount <= 1 || titles.includes(myTitle)){
console.log("code here")
setTimeout(function() {
window.location.reload(true);
}, time);
}else if(( HeadingText.includes(document.getElementsByTagName('h1')[0].innerText))){
setTimeout(function() {
window.location.reload(true);
}, time);
}
console.log("End of code")
})();
اکنون در دسترس! پژوهش تلگرام ۲۰۲۵ — مهمترین بینشهای سال 
