Skip to content

Instantly share code, notes, and snippets.

View RudaGabriel's full-sized avatar
🏠
Working from home

Ruda Gabriel RudaGabriel

🏠
Working from home
View GitHub Profile
@RudaGabriel
RudaGabriel / netcine.tools.user.js
Last active May 5, 2025 15:53
netcine.tools.user.js
// ==UserScript==
// @name Next and Previous Button (SERIES) Netcine
// @namespace https://gist.github.com/RudaGabriel/
// @version 2.1
// @description Script made by Ruda Gabriel
// @author Ruda Gabriel
// @copyright 2024, rudagabriel (https://gist.github.com/RudaGabriel/)
// @license MIT
// @include *netcine*/episode/*
// @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAABUCAYAAABKkT/yAAASk0lEQVR4nOxda3bbSHq9VQBBipRkth9xzzk5x5yTBQz7d35YnuTkbzsrmO4VTPcKPLOCdq+grRWMvIKoVxAlC0iUZ/d0/KD14AtAVU4VCiCIqgIKD3osy/ccWqYIgBDw1Xe/x0WVzznHJ7x3HAGYAnikfuZ/n+IMwCz3/lT9/NHwWWMQ/gxA3gZ47ifPvR8CuPM3QHj9DK9+PkJY2IYD6/8E1u8AztSLb16Is/+fcY5vxecs97l47w+Ag7/ebIv0OKF6z3Pv1WdiG7E9IoDHAAmA3sNHQH9/Gv38X9+F/3sBHqnt1H6LFfB/8+TPEr9Ox4A8j9yf/7ecP+niIgOYAHgK4MvCTW6Dc2UULwGcND2I77xlD8DgAdC/f4T1myO8XmubhBdA9G775jOuGcQR5/gjZ5gxtm0Ayxkw+hVAm/41AoEHeuc+SH80JcQ7imf/ivhie5NVBFynNz1vADl7Z8koawtxs591eNPzEEb1lXrNlBF8j5rn7XatiTCAu4DXF8N0iv5DwNM3i6+cv/ep7YPVW+djGEH7Q5DBEKTXf0QHI9DhnrZNxJwO1cbFihv+T+
@RudaGabriel
RudaGabriel / instagram-dfyb.user.js
Last active July 24, 2025 19:53
Check which instagram users you follow who don't follow you back
// ==UserScript==
// @name Instagram Doesn't follow you back
// @namespace ruda.gabriel
// @version 5.0
// @description insert the script created by @davidarroyo1234 / to check who doesn't follow you back
// @author Ruda Gabriel
// @license MIT
// @homepage https://gist.github.com/RudaGabriel/50499db214cfdf871696c0b410c73e2c
// @updateURL https://gist.github.com/RudaGabriel/50499db214cfdf871696c0b410c73e2c/raw/
// @downloadURL https://gist.github.com/RudaGabriel/50499db214cfdf871696c0b410c73e2c/raw/instagram-dfyb.user.js
@RudaGabriel
RudaGabriel / chaturbate.tools.desktop.enc.user.js
Last active May 28, 2025 21:58
A powerful auxiliary tool... is under development
This file has been truncated, but you can view the full file.
// ==UserScript==
// @name Chaturbate Tools User Desktop
// @namespace Chaturbate Tools User | Ferramentas para o site Chaturbate Modo Usuário
// @version 13.1
// @author Ruda Gabriel
// @homepage https://gist.github.com/RudaGabriel/260ef7f2b709a292119fc13d507130e6
// @updateURL https://gist.githubusercontent.com/RudaGabriel/260ef7f2b709a292119fc13d507130e6/raw/
// @downloadURL https://gist.githubusercontent.com/RudaGabriel/260ef7f2b709a292119fc13d507130e6/raw/chaturbate.tools.desktop.enc.user.js
// @supportURL https://gist.github.com/RudaGabriel/260ef7f2b709a292119fc13d507130e6
// @description Tools to make your browsing easier | Ferramentas para facilitar sua navegação
@RudaGabriel
RudaGabriel / getAllListeners.js
Last active July 24, 2025 20:00
Get all event listeners on the page and their functions
/*!
* Author: Ruda Gabriel
* Copyright 2021-2021 Ruda Gabriel
* Contact fb: /ruda.gabriel ig: /ruda.gabriel_ pastebin: /u/RudaGabriel
* Licensed under MIT (https://raw.githubusercontent.com/RudaGabriel/getAllListeners/main/LICENSE)
*/
function getAllListeners(specific = null) {
const listeners = [];
for (const element of document.all) {
const eventListeners = getEventListeners(element);