Parameter | Description | Version | Ref |
---|---|---|---|
-ingame |
0.254.0.13 | ||
-overwolfsilent |
Do not open store when launching (Used by autostart entry) | 0.254.0.13 | |
-silent |
0.254.0.13 |
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
from pyrobud import command, module | |
import re, json, http.client | |
class myTeamspeak(module.Module): | |
name = "myTeamspeak" | |
disabled = False | |
myts_login = { | |
'email': '', | |
'password': '', | |
} |
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
{ | |
"AutoStart": { | |
"client": "localhost:6742", | |
"custom": "", | |
"enabled": false, | |
"host": "0.0.0.0", | |
"port": "6742", | |
"profile": "backlight", | |
"setclient": true, | |
"setcustom": false, |
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
{ | |
"$schema": "http://json-schema.org/draft-06/schema#", | |
"$ref": "#/definitions/TranscriptResponse", | |
"definitions": { | |
"TranscriptResponse": { | |
"type": "object", | |
"additionalProperties": false, | |
"properties": { | |
"responseContext": { | |
"$ref": "#/definitions/ResponseContext" |
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
openapi: 3.0.0 | |
info: | |
title: YouTube Data API v3 | |
version: "3.0.0" | |
description: API for interacting with YouTube data | |
contact: | |
name: Google Developers | |
url: https://developers.google.com/ | |
license: | |
name: Apache License 2.0 |
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 Edge Extension Download Link Generator | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Generates a download link for Edge extensions and places it next to the Get button | |
// @author Bluscream | |
// @match https://microsoftedge.microsoft.com/addons/detail/*/* | |
// @grant none | |
// @license MIT | |
// @updateURL https://gist.github.com/Bluscream/5fef08f5782773b883f81d2c128773f9/raw/edge_extension_download_link_generator.user.js |
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
// Unlock all for https://guessthe.game/previous-games# | |
localStorage.clear(); | |
const guesses = 7; | |
const days = 800; | |
localStorage.setItem("gamesPlayedCount", days); | |
for (let i = 0; i < days; i++) { | |
localStorage.setItem(`${i}_gamestate`, "win"); | |
for (let ii = 0; ii < guesses; ii++) { | |
// localStorage.setItem(`${i}_guess${ii}f`, "false"); | |
localStorage.setItem(`${i}_guess${ii}`, "Skipped!"); |
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
button[aria-label="Send a gift"], /* textbox gift button */ | |
[class^=nitroBadgeSvg__], /* nitro user badge */ | |
.textBadge_f05120, /* aRPC bar */ | |
div[class="notice__5fd4c colorDefault__438d3"], | |
.vc-rdb-review:has(span.botText_daff56) { | |
display: none; | |
} | |
img[src="/assets/5cdb518bb425d85a0f51.svg"] { /* red x emoji */ | |
content: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiI+PHBhdGggZmlsbD0iI0REMkU0NCIgZD0iTTM2IDMyYzAgMi4yMDktMS43OTEgNC00IDRINGMtMi4yMDkgMC00LTEuNzkxLTQtNFY0YzAtMi4yMDkgMS43OTEtNCA0LTRoMjhjMi4yMDkgMCA0IDEuNzkxIDQgNHYyOHoiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMjEuNTI5IDE4LjAwNmw4LjIzOC04LjIzOGMuOTc3LS45NzYuOTc3LTIuNTU5IDAtMy41MzUtLjk3Ny0uOTc3LTIuNTU5LS45NzctMy41MzUgMGwtOC4yMzggOC4yMzgtOC4yMzgtOC4yMzhjLS45NzYtLjk3Ny0yLjU2LS45NzctMy41MzUgMC0uOTc3Ljk3Ni0uOTc3IDIuNTU5IDAgMy41MzVsOC4yMzggOC4yMzgtOC4yNTggOC4yNThjLS45NzcuOTc3LS45NzcgMi41NTkgMCAzLjUzNS40ODguNDg4IDEuMTI4LjczMiAxLjc2OC43MzJzMS4yOC0uMjQ0IDEuNzY4LS43MzJsOC4yNTgtOC4yNTkgOC4yMzggOC4yMzhj |
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 Discord Auth Scope and Permission Purger | |
// @namespace http://github.com/Bluscream | |
// @version 1.0 | |
// @description Combines functionality to purge bot permissions and purge "guilds.join" user auth scope | |
// @author Bluscream, phind.com | |
// @match *://discord.com/oauth2/authorize?*permissions=* | |
// @match *://discord.com/oauth2/authorize?*scope=* | |
// @grant GM_getValue | |
// @downloadURL https://update.greasyfork.org/scripts/491068/Discord%20Auth%20Scope%20and%20Permission%20Purger.user.js |
NewerOlder