This file contains 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
/* ==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 { |
This file contains 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
/* ==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 { |
This file contains 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
// Run 'npm install [email protected]' | |
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 = { |
This file contains 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 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 |
This file contains 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 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 |