Install Deno, see https://deno.land/manual/getting_started/installation
Run ./sfz2sf.sh
with the path of the SingleFileZ page as first parameter
Install Deno, see https://deno.land/manual/getting_started/installation
Run ./sfz2sf.sh
with the path of the SingleFileZ page as first parameter
// ==UserScript== | |
// @name TreasuryDirect Copypasta | |
// @version 0.2 | |
// @description Allow creds to be pasted from a password manager into the TreasuryDirect login form. | |
// @author Dennis Stewart | |
// @license The Strong Style Public License https://raw.githubusercontent.com/dennisstewart/cvs-checker-py/main/LICENSE | |
// @match https://*.treasurydirect.gov/RS/PW-Display.do* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=treasurydirect.gov | |
// @grant none | |
// ==/UserScript== |
<# | |
PowerShell script to register a URL handler for the paraworld:// protocol and act as the handler. Joining a Paraworld server is only one click away. | |
Registers the URL handler if launched without any arguments. | |
Launches the game and joins the server if launched with valur -URI flag. | |
URL protocol format: paraworld://[server_ip]:[server_port] | |
#> | |
param( |
// ==UserScript== | |
// @name New script - territorial.io | |
// @namespace Violentmonkey Scripts | |
// @match https://territorial.io/ | |
// @grant none | |
// @version 1.0 | |
// @author - | |
// @run-at document-end | |
// ==/UserScript== | |
// Disables Key listener |
To view the progress of a Powerpoint presentation, a progress bar can be displayed at the bottom of the slide show.
Once the slideshow is complete, go to Tools > Macro > Visual Basic Editor.
In the new window, select Insert > Module and copy one of the below files in the blank page:
Then go to File > Close > Return to Microsoft PowerPoint In the displayed page of Microsoft Powerpoint, go to:
$mode = Get-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme | |
if ($mode.AppsUseLightTheme -eq 1) { | |
Write-Output "Mode is 1, changing to 0" | |
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 0 | |
} | |
elseif ($mode.AppsUseLightTheme -eq 0) { | |
Write-Output "Mode is 0, changing to 1" | |
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 1 |
// ==UserScript== | |
// @name Get result source | |
// @description gets the source of a result. | |
// @namespace https://github.com/btaillon | |
// @updateURL https://gist.githubusercontent.com/btaillon/af627d1206dd5c687825f9a9b3cc04a5/raw/get-result-source.user.js | |
// @downloadURL https://gist.githubusercontent.com/btaillon/af627d1206dd5c687825f9a9b3cc04a5/raw/get-result-source.user.js | |
// @supportURL https://gist.githubusercontent.com/btaillon/af627d1206dd5c687825f9a9b3cc04a5 | |
// @version 0.2 | |
// @author btaillon | |
// @match *://*/* |
// ==UserScript== | |
// @name Google PlayStore Info | |
// @namespace http://tampermonkey.net/ | |
// @version 9.1.2 | |
// @description try to take over the world! | |
// @author You | |
// @match https://play.google.com/store/* | |
// @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://play.google.com | |
// @grant none | |
// ==/UserScript== |