Skip to content

Instantly share code, notes, and snippets.

View suhitaga's full-sized avatar
🧑‍🍳
cooking

Suhit Agarwal suhitaga

🧑‍🍳
cooking
View GitHub Profile
@suhitaga
suhitaga / background.js
Last active December 15, 2022 20:14
TikTok Stop the Clock
// This will run in the background
var videos = document.getElementsByTagName("video");
for(var i = 0; i < videos.length; i++){
videos[i].removeAttribute("autoplay");
}
@suhitaga
suhitaga / content.js
Last active November 21, 2022 10:20
Blackboard Arc Boost
var link = document.createElement('link');
link.setAttribute('rel', 'stylesheet');
link.setAttribute('type', 'text/css');
// add your custom font link down here 👇
link.setAttribute('href', 'https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
document.head.appendChild(link);
const home = document.querySelector('#Home')
link = home.children[0]
link.href = 'http://blackboard.usc.edu/webapps/portal/frameset.jsp?tab_id=_1_1'
// Implements a dictionary's functionality
#include <stdbool.h>
#include <string.h>
#include <ctype.h>
#include <stdbool.h>