Coder Social home page Coder Social logo

steam-vote-helper's Introduction

Steam vote helper

This version will work only with THE STEAM AWARDS. 2022 year.

  1. Just open your favourite browser
  2. Navigate here and login if not yet logged in
  3. Open browser console (in most browsers it should be F12 key on your keyboard)
  4. Copy following code to browser console and press Enter
let sessionId = WebStorage.GetCookie("sessionid");
let isAccountLimited = false;

function OnAppVoteClick(voteid, appid, developerid) {
  if (isAccountLimited) {
    return;
  }
  $J.post("https://store.steampowered.com/salevote", {
    sessionid: sessionId,
    voteid: voteid,
    appid: appid,
    developerid: developerid,
  })
    .done(function (data) {
      if (data.startsWith("Ваш аккаунт не отвечает") || data.startsWith("Your account does")) {
        console.error("account limited");
        isAccountLimited = true;
      } else {
        console.info("Vote for " + appid + " was succeed");
      }
    })
    .fail(function () {
      console.error("Vote for " + appid + " was FAILED");
    });
}
OnAppVoteClick("72", "1245620", "0");
OnAppVoteClick("73", "1659040", "0");
OnAppVoteClick("74", "275850", "0");
OnAppVoteClick("75", "1938090", "0");
OnAppVoteClick("76", "1063660", "0");
OnAppVoteClick("77", "261550", "0");
OnAppVoteClick("78", "1811260", "0");
OnAppVoteClick("79", "1761390", "0");
OnAppVoteClick("80", "1593500", "0");
OnAppVoteClick("81", "920210", "0");
OnAppVoteClick("82", "1997040", "0");

Output will be like this:
output image

Something like license

You're all free to copy, distribute, edit and do what you want with this but leave credits.

steam-vote-helper's People

Contributors

earskilla avatar tarcsi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.