Inspired by HTML imports, can we add JSON imports too? ```html <script type="application/json" src="foo.json" id="foo"></script> <script type="application/json" id="bar"> { "foo": "bar" } </script> ```
```js document.getElementById("foo").json // or whatever document.getElementById("bar").json ```