Copy Code Example Copy JavaScript Code Click the button below to copy the entire code snippet. // ==UserScript== // @name TapSwap // @namespace https://t.me/ZAIBITECH // @version 3.1 // @description TapSwap Auto Complete Cinema Tasks :) // @author ZAIBI // @match https://app.tapswap.club/* // @icon https://www.softportal.com/en/scr/1089/icons/icon_src.png // @grant GM_webRequest // @downloadURL https://raw.githubusercontent.com/ZAIBITECH1/TapSwapVideos/main/tampermonkey.js // @updateURL https://raw.githubusercontent.com/ZAIBITECH1/TapSwapVideos/main/tampermonkey.js // @homepage https://github.com/ZAIBITECH1/TapSwapVideos/ // @require https://code.jquery.com/jquery-3.7.1.min.js // ==/UserScript== (function () { function onready(fn) { if (document.readyState != "loading") fn(); else document.addEventListener("DOMContentLoaded", fn); ...
Comments