Skip to content

Instantly share code, notes, and snippets.

@DavidBuchanan314
Created February 23, 2017 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidBuchanan314/4c5d5083dfa46680a7a1217285afbff4 to your computer and use it in GitHub Desktop.
Save DavidBuchanan314/4c5d5083dfa46680a7a1217285afbff4 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name fbhax
// @namespace davidbuchanan
// @description hax
// @include https://*.apps.fbsbx.com/*
// @version 1
// @grant none
// ==/UserScript==
var originalSetScore = FBInstant.setScore;
FBInstant.setScore = function(score) {
score = parseInt(prompt("Enter Score:", score));
originalSetScore(score);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment