Skip to content

Instantly share code, notes, and snippets.

View itsmeow's full-sized avatar

itsmeow itsmeow

View GitHub Profile
@itsmeow
itsmeow / inquizitive-dark.user.css
Last active December 1, 2022 04:14
Dark theme for Norton InQuizitive
/* ==UserStyle==
@name InQuizitive Dark
@namespace itsmeow.dev
@updateURL https://gist.github.com/itsmeow/d506da6c2cccf99242b302ccae0c353a/raw/inquizitive-dark.user.css
@version 1.0.2
@description Dark theme for Norton InQuizitive
@author itsmeow
==/UserStyle== */
@-moz-document domain("ncia.wwnorton.com") {
body {
@itsmeow
itsmeow / exlibris-dark.user.css
Last active January 17, 2022 10:09
Dark mode for ExLibris Library Search system
/* ==UserStyle==
@name ExLibris Dark Theme
@namespace itsmeow.dev
@updateURL https://gist.github.com/itsmeow/9b4c49f2a6132ce957ec5ba31377e76a/raw/exlibris-dark.user.css
@version 1.0.0
@description Dark mode for ExLibris Library Search system
@author itsmeow
==/UserStyle== */
@-moz-document domain("exlibrisgroup.com") {
:root {
@itsmeow
itsmeow / list-mod-large-modpacks.js
Last active July 22, 2021 18:37
Lists the largest modpacks that a mod is in
// Run 'npm install got@11.8.2'
const got = require("got");
const args = process.argv.slice(2).join(" ");
const run = async () => {
let idData = await got
.get(`https://www.modpackindex.com/api/v1/mods?limit=1&name=${args}&page=1`)
.json();
console.log(`Project ${idData.data[0].name} ID ${idData.data[0].id}`);
let result = {
@itsmeow
itsmeow / tampermonkey-sheets-update-curseforge-rewards.user.js
Last active October 18, 2021 14:59
A tampermonkey script to update a google sheet with data from the CurseForge rewards transactions page.
// ==UserScript==
// @name CurseForge Rewards Transactions Page to Google Sheet
// @namespace github.com/itsmeow/ad3571ba50cde6a94b5ea36d0cdb263d
// @updateURL https://gist.githubusercontent.com/itsmeow/ad3571ba50cde6a94b5ea36d0cdb263d/raw/tampermonkey-sheets-update-curseforge-rewards.user.js
// @version 1.0.1
// @description Gathers data from your CurseForge rewards transactions and enters it into Google Sheets.
// @author itsmeowdev
// @match https://authors.curseforge.com/store/transactions
// @icon https://media.forgecdn.net/avatars/130/458/636460205549127215.png
// @grant none
@itsmeow
itsmeow / tampermonkey_classroom.js
Created September 27, 2020 05:55
Fix Classroom Links
// ==UserScript==
// @name Fix Classroom Links
// @namespace https://itsmeow.dev/
// @version 0.1
// @description Switches classroom links to u/6/
// @author itsmeow
// @match https://mail.google.com/mail/u/6/
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant none