The main purpose of customizing the http class is to add an unique parameter to every GET request to make the whole url unique and prevent browsers to use cache while retrieving templates, scripts, styles and any other data that my app gets from server (except 'node_modules').
I know how to use custom http class to make calls inside my app, but what I want is to make Angular engine, which loads app's resources, use my class.
I used interceptors to do the same in AngularJS and this solution worked just perfect.
Is this possible at all?