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 KyoAni and friends r/place Overlay | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3-kyoani | |
// @description kyogo animaion !!! so true | |
// @author oralekin, LittleEndu, ekgame, helpimnotdrowning, ninjuh1124 | |
// @match https://hot-potato.reddit.com/embed* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com | |
// @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
// ==UserScript== | |
// @name osu! Logo template | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description try to take over the canvas! | |
// @author oralekin, LittleEndu, ekgame | |
// @match https://hot-potato.reddit.com/embed* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com | |
// @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
# very basic, doesnt account for locked, pinned stuff. you are free to figure it out yourself, | |
# but this is all I need, assuming anyone ever sees this lmao | |
import json | |
import random | |
DEBUG = False | |
def write_file(file: str, content: str) -> None: | |
"""Write content to 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
import time | |
import json | |
from urllib.parse import urlparse, urlunparse | |
class tab: | |
def __init__(self, url, title): | |
self.url = url; self.title = title | |
self.favIconUrl = urlunparse(urlparse(url)._replace(path='favicon.ico',params='',query='',fragment='')) | |
self.pinned = False; self.muted = False |