Skip to content

Instantly share code, notes, and snippets.

@vijjusri14
Last active May 19, 2022 06:42
Show Gist options
  • Select an option

  • Save vijjusri14/676985ec5d19cd9ea4f95aab618f9d71 to your computer and use it in GitHub Desktop.

Select an option

Save vijjusri14/676985ec5d19cd9ea4f95aab618f9d71 to your computer and use it in GitHub Desktop.
Global List of current Games With Gold
/*
Visit https://www.xbox.com/en-US/live/gold/
and in browser's console run below code to get list currently available Games With Gold list.
This list may include additional games that are made available for free with gold in certain countries.
*/
var gameList = [];
$.each(globalContentNew.locales, function(index, value){
gameList.push(value.keyLinknowgame1, value.keyLinknowgame2, value.keyLinknowgame3, value.keyLinknowgame4, value.keyLinknowgame5, value.keyLinknowgame6, value.keyLinknowgame7, value.keyLinknowgame8)
})
console.log([...new Set(gameList)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment