I'm building a little Chrome extension to interact with Angular website. I can catch full page reload successfully via $(document).ready()
, but page changes via ng-view
don't change ready
state, so I'm not sure how to catch that event from within a Chrome extension.
How should I go about catching ng-view
changes from Chrome extension? Preferably without introducing extension dependency to AngularJS.