Unlocks HyperNotepad premium features
// ==UserScript==
// @name HyperNotepad Premium
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Unlocks HyperNotepad premium features
// @author thecaticorn01
// @icon https://hypernotepad.com/favicon.ico
// @match *://*.hypernotepad.com/*
// @run-at document-start
// ==/UserScript==
'use strict';
const cookieName = "is-premium";
const cookieValue = "true";
const cookieDomain = "hypernotepad.com";
document.cookie = `${cookieName}=${cookieValue}; domain=${cookieDomain}; path=/; priority=medium`;