您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Downloads leaked logins for any site instantly.
当前为
- // ==UserScript==
- // @name Get On LeakBin
- // @namespace https://tampermonkey.net/
- // @version 1.0
- // @description Downloads leaked logins for any site instantly.
- // @author sevenworks.eu.org
- // @match *://*/*
- // @license GNU
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- let aa = false, bb = false;
- document.addEventListener('keydown', function(event) {
- if (event.code === 'ControlRight') aa = true;
- else if (event.code === 'ShiftRight') bb = true;
- if (aa && bb) {
- let x = window.open(`https://leakbin.sevenworks.eu.org/?p=download&leak=${window.location.hostname.replace("www.","")}`, '_blank', 'width=300,height=100,top=0,left=0');
- setTimeout(() => x.close(), 1420);
- aa = bb = false;
- }
- });
- document.addEventListener('keyup', function(event) {if (event.code === 'ControlRight') aa = false; else if (event.code === 'ShiftRight') bb = false;});
- })();