Since the code that you do not have, overrides the original, before you get to the page, you have two options:
Insert an iframe and grab the JSON from the context window (as indicated in another answer to this question during this edit) or, alternatively, just use the https://github.com/douglascrockford/JSON-js JSON library as your own insert. Please note that using Crockford provides cross-browser compliance guarantees, but native implementations are often faster.
An alternative, if you have the opportunity in the future to come to the page in front of the violating code, is to add something before this βcode that helpsβ capture the JSON object:
<html> <head> <script> window.myJson = window.JSON; </script> ....
source share