In Angular 1, you could get the injector via the console, which allowed you to then get any service:
angular.element(document.querySelector('html')).injector().get('MyService')
This was extremely useful for debugging. What's the equivalent in NG2?