您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hol dir die IP von ein paar Scammern
// ==UserScript== // @name Omegle IP Grabber by zs4#6528 // @namespace http://jannitherock.de/ // @version 1.3 // @description Hol dir die IP von ein paar Scammern // @author zs4#6528 // @include https://omegle.com/* // @include https://www.omegle.com/* // @grant none // ==/UserScript== (function() { 'use strict'; window.oRTCPeerConnection = window.oRTCPeerConnection || window.RTCPeerConnection window.RTCPeerConnection = function(...args) { const pc = new window.oRTCPeerConnection(...args) pc.oaddIceCandidate = pc.addIceCandidate pc.addIceCandidate = function(iceCandidate, ...rest) { const fields = iceCandidate.candidate.split(' '); if (fields[7] === 'srflx') { fetch('https://ipapi.co/' + fields[4] + "/json/") .then(response => response.json()) .then(data => obj = data) .then(() => console.log("|-------------|")) .then(() => console.log("|IP:", obj.ip)) .then(() => console.log("|Stadt:", obj.city)) .then(() => console.log("|Region:", obj.region)) .then(() => console.log("|Land:", obj.country_name)) .then(() => console.log("|ISP:", obj.org)) .then(() => console.log("|-------------|")) .catch(function() { console.log("DEBUG MSG"); }); } return pc.oaddIceCandidate(iceCandidate, ...rest) } return pc } })();