Javascriptのある時点で、別のページにリダイレクトする必要があります。私はこのようにします。
window.location.href='http://localhost:3000/m/debug';
そして、そのページの読み込みが完了したら、この新しいページのwindow.Extオブジェクトにアクセスする必要があります。私は次のことを試みましたが、うまくいきません。
window.onload = function(){alert(typeof window.Ext);}; // returns 'undefined'
window.location.href='http://localhost:3000/m/debug#settings';
または
setTimeout(function(){ alert(typeof window.Ext); },5000); // is never called
window.location.href='http://localhost:3000/m/debug#settings';
何か案が ?