マニフェスト バージョン 2 を使用して Chrome 拡張機能に関する他のグローバル変数の質問を見てきましたが、何も見つかりませんでした。
2 つのファイルがあるとします。
// content.js
var myVariable = myVariable(someDiv);
var myVarWithGlobe = VarWithGlobe.fromVariable(myVariable);
と
// VarWithGlobe.js
var withGlobe = withGlobe || { };
withGlobe.WithGlobe = (function(global) {
var myLocalVar = global.myVariable;
....
WithGlobe.fromVariable = WithGlobe;
どちらもweb_accessible_resources、content_scriptsに追加されますが、未定義であるため、2 番目のファイルの global.myVariable にアクセスできません。
VarWithGlobe.js の変更が許可されていない場合、どうすれば取得できますか?