This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var buttons = document.querySelectorAll("div[data-a-target=tw-core-button-label-text]") | |
for (var i=0,j = buttons.length;i<j;i++){ | |
if (buttons[i].textContent.includes("Claim Offer")||buttons[i].textContent.includes("Claim Game")){ | |
buttons[i].click(); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Enter the following commands in a browser console. | |
// First, set up a way to click on stuff. just using .click() doesn't seem to work for some reason. | |
var clickEvent = new MouseEvent("click", { | |
"view": window, | |
"bubbles": true, | |
"cancelable": false | |
}); | |
// Then load up all the posts. You'll probably need to click "load" a few times to see all of them. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# First install webview: | |
# pip install pywebview | |
# Then create a config.json file in the same folder with the following options: | |
""" | |
{ | |
"content":[ | |
{ | |
"exchange":"Bitstamp", | |
"ticker":"BTCUSD", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Helper function to create new DOM elements, by thanael - thannymack.com | |
function addEl() { | |
function isElement(element) { // Check if something is a DOM element | |
// This function from https://stackoverflow.com/a/36894871 | |
return element instanceof Element || element instanceof HTMLDocument; | |
} | |
// Defaults, if the user specifies nothing: | |
let el = document.body; // add our new element to the document.body by default | |
let tag = "div"; // add a DIV element by default | |
let attr = {}; // no attributes by default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Flickr Downloader | |
// @namespace https://github.com/f2face/flickr-dl.userscript | |
// @version 0.2.3 | |
// @description A userscript for downloading Flickr photos. | |
// @author f2face / trumad | |
// @match https://www.flickr.com/* | |
// @include http://www.flickr.com/* | |
// @include https://www.flickr.com/* | |
// @grant unsafeWindow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function searchText(elementType,text){ | |
var xpath = `//${elementType}[contains(text(),'${text}')]`; | |
var matchingElement = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; | |
return matchingElement; | |
} | |
function sleep(ms) { // usage: await sleep(4000) | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"title": "mnt/big/monkees", "created": "20230205095900086090", "modified": "20230205095900086090", "tags": "folder", "text": "/ [[mnt|mnt]] / [[big|mnt/big]]\n\n* \ud83d\udcc2 [[CD-Rom|mnt/big/monkees/CD-Rom]]\n* \ud83d\udcc2 [[Comics|mnt/big/monkees/Comics]]\n* \ud83d\udcc2 [[Magazines|mnt/big/monkees/Magazines]]\n* \ud83d\udcc2 [[Movies|mnt/big/monkees/Movies]]\n* \ud83d\udcc2 [[Music|mnt/big/monkees/Music]]\n* \ud83d\udcc2 [[Radio|mnt/big/monkees/Radio]]\n* \ud83d\udcc2 [[TV|mnt/big/monkees/TV]]\n* \ud83d\udcc2 [[Trading Cards|mnt/big/monkees/Trading Cards]]"}, {"title": "mnt/big/monkees/CD-Rom", "created": "20190907224911222063", "modified": "20190907224911222063", "tags": "folder", "text": "/ [[mnt|mnt]] / [[big|mnt/big]] / [[monkees|mnt/big/monkees]]\n\n* \ud83d\udcc2 [[Hey, Hey, We're The Monkees (Rhino CD-Rom 1996)|mnt/big/monkees/CD-Rom/Hey, Hey, We're The Monkees (Rhino CD-Rom 1996)]]"}, {"title": "mnt/big/monkees/Comics", "created": "20190907224918034838", "modified": "20190907224918034838", "tag |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Boost by Thanael - thannymack.com | |
// Created as a boost for Arc browser | |
// Could easily be ported to a tampermonkey script | |
// This script autoblocks accounts which post any sponsored tweets, hopefully before you even see them | |
// Use the autoscroll checkbox to let it scroll replies on a popular tweet, to hoover up accounts who sponsor. | |
if (!localStorage.userWantsPromotersBlocked){ | |
localStorage.userWantsPromotersBlocked = true; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Delete all playdate games | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description deletes all playdate games at play.date/sideload | |
// @author trumad | |
// @match https://play.date/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=play.date | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Original boost: https://arc.net/e/2CADECD1-9839-4057-9EA9-A9988ABC4B92 | |
go(); | |
async function go(){ | |
await wait(1000); | |
addLinks(); | |
} | |
async function addLinks(){ |
OlderNewer