// ==UserScript== // @name Otomatik Giriş Butonu // @namespace http://tampermonkey.net/ // @version 0.1 // @description Giriş formunu otomatik olarak doldurur ve giriş yapar // @author You // @match :///* // Herhangi bir sayfada çalışacak şekilde ayarlanmıştır // @grant none // ==/UserScript== (function() { 'use strict'; // Kullanıcı adı ve şifre const username = 'YOUR_EMAIL@gmail.com'; // Buraya Gmail adresinizi yazın const password = 'YOUR_PASSWORD'; // Buraya şifrenizi yazın // Giriş formunu dolduracak ve gönderecek işlev function autoLogin() { // Giriş formu elemanlarını seçin // Bu seçiciler oyunun veya sitenin yapısına bağlı olarak değişebilir const emailField = document.querySelector('input[type="email"], input[name="username"]'); const passwordField = document.querySelector('input[type="password"], input[name="password"]'); const submitButton = document.querySelector('button[type="submit"], input[type="submit"]'); if (emailField && passwordField && submitButton) { emailField.value = username; passwordField.value = password; submitButton.click(); } else { console.log('Giriş formu elemanları bulunamadı.'); } } // Buton oluşturma ve sayfaya ekleme function addLoginButton() { const button = document.createElement('button'); button.innerText = 'Otomatik Giriş Yap'; button.style.position = 'fixed'; button.style.top = '10px'; button.style.right = '10px'; button.style.padding = '10px'; button.style.backgroundColor = 'blue'; button.style.color = 'white'; button.style.border = 'none'; button.style.borderRadius = '5px'; button.style.zIndex = 1000; button.addEventListener('click', autoLogin); document.body.appendChild(button); } // Butonu sayfaya ekle addLoginButton(); })();