Last active
May 19, 2022 06:42
-
-
Save vijjusri14/676985ec5d19cd9ea4f95aab618f9d71 to your computer and use it in GitHub Desktop.
Global List of current Games With Gold
This file contains hidden or 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
| /* | |
| 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