- View a broadcast
- Add a game to your wishlist (Ricochet)
- Rate an item on the Workshop (random TF2 map upvote)
- Subscribe to an item in the Steam Workshop (subscribe + unsubscribe)
- Set an avatar on your Community profile (not changed)
- Set your real name on your Community profile (same as profile name)
- Set a profile background (not changed)
- Join a group (Steam Trading Cards Group)
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 ASF STM (Nephrite Mod) | |
// @description ASF bot list trade matcher | |
// @license Apache-2.0 | |
// @author Rudokhvist, Nephrite | |
// @match https://steamcommunity.com/id/*/badges* | |
// @match https://steamcommunity.com/profiles/*/badges* | |
// @version 2.14-custom | |
// @connect asf.justarchi.net | |
// @grant GM.xmlHttpRequest |
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 Steam Community Mobile Trade Confirmations | |
// @namespace www.doctormckay.com | |
// @description Enables mobile trade confirmations in the web browser | |
// @match https://steamcommunity.com/mobileconf/conf* | |
// @version 1.2.0 | |
// @author DoctorMcKay, Nephrite | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== |
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
const path = require('path'); | |
const fs = require('fs'); | |
const CONFIG = { | |
ProtoFilterEnabled: false, | |
KnownProtoPath: 'Protobufs', | |
InputPath: './files/', | |
OutputPath: './dump/', | |
CommonProtoFileName: 'common.proto', | |
ServiceProtoFileNameTemplate: 'service_%svcname%.proto' |
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
#!/usr/bin/env -S node --harmony-regexp-named-captures | |
'use strict'; | |
if (process.argv.length <= 2) { | |
console.log('Usage: \n dumper.js <input_file.js> [options]'); | |
console.log(' node [flags] dumper.js <input_file.js> [options]'); | |
console.log('Options:'); | |
console.log(' --Oall=<output_file> - dump enums and protos to file <output_file> (same as --Oenum + --Oproto)'); | |
console.log(' --Oenum=<output_file_enums> - dump only enums to file <output_file_enums> (default: <stdout>)'); | |
console.log(' --Oproto=<output_file_protos> - dump only protos to file <output_file_protos> (default: <stdout>)'); |
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
#version:1738889325-publicbeta | |
-accesscode - | |
-batterytestmode - rapidly cycle battery percentages for testing | |
-bigpicture - Start in Steam Big Picture mode | |
-bootreserve - | |
-bootreservesizemb - | |
-browser-offline - | |
-cafeapplaunch - Launch apps in a cyber cafe context | |
-candidates - Show libjingle candidates for local connection as they are processed |
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
'use strict'; | |
if (process.argv.length < 4) { | |
console.log('Usage: node parser.js <input> <output> [proto]'); | |
console.log('Example: node parser.js proto_defs.vpd proto_defs.json path/to/tf_proto_def_messages.proto'); | |
return; | |
} | |
const FS = require('fs'); | |
const Protobuf = require('protobufjs'); // v6.8.3 |