Skip to content

Instantly share code, notes, and snippets.

View arturo182's full-sized avatar

arturo182 arturo182

View GitHub Profile
tbody = document.querySelectorAll(".table-area tbody")[0];
i = tbody.children.length;
while (i--) {
child = tbody.children[i];
qty = child.children[3].firstChild.innerText.split('\n')[0];
//console.log(qty);
qtyint = parseInt(qty);
// Change 3000 here to preferred qty
if ((qtyint < 3000) || (qty == "Discontinued"))
// ==UserScript==
// @name Remove bluechecks from all Twitter user names
// @match *://*.twitter.com/*
// @grant none
// @version 1.0
// @author arturo182
// @require https://code.jquery.com/jquery-3.6.0.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// ==/UserScript==
// ==UserScript==
// @name @chaoticvibing Twitter Blue red ticks - twitter.com
// @namespace Violentmonkey Scripts
// @match *://*.twitter.com/*
// @grant none
// @version 1.5.2
// @author @chaoticvibing - GH @busybox11, modified by @arturo182
// @description 11/9/2022, 11:45:28 PM
// @updateURL https://gist.githubusercontent.com/arturo182/85251cbc370a12d9de6766dd44b88d5c/raw/twitterblue-red.user.js
// @downloadURL https://gist.githubusercontent.com/arturo182/85251cbc370a12d9de6766dd44b88d5c/raw/twitterblue-red.user.js
// ==UserScript==
// @name Proper Twitter Favicon
// @author arturo182
// @version 0.1.0
// @description Bring back the Twitter favicon
// @match https://twitter.com/*
// @match https://mobile.twitter.com/*
// @match https://x.com/*
// @match https://mobile.x.com/*
// @updateURL https://gist.github.com/arturo182/e488bbb641c906143930a97c9438b696/raw/twitter-favicon.user.js
#!/bin/bash
OUTPUT_DIR=""
INPUT_FILE=""
ZOOM=0.7
WIDTH=1080
HEIGHT=1080
ROTATE_X=0
ROTATE_Z=45
ROTATION=360 # Total rotation angle
@arturo182
arturo182 / userChrome.css
Created September 30, 2024 02:10
Firefox
/* Make tabs look like tabs */
.tab-background {
border-radius: 0px 0px !important;
margin-bottom: 0px !important;
}
.tabbrowser-tab:not([selected=true]):not([multiselected=true]) .tab-background {
background-color: color-mix(in srgb, currentColor 2%, transparent);
}