I'm trying to share objects between my javascripts.. In my background.html I have:
<html>
<head>
<script type="text/javascrpt">
window.Something = {};
</script>
</head>
<body>
<script type="text/javascript" src="../js/file1.js"></script>
<script type="text/javascript" src="../js/file2.js"></script>
</body>
</html>
and in file1.js I have:
alert("1: " + window.Something);
and in file2.js I have:
alert("2: " + window.Something);
when I reload my extension I just get 2 alerts:
1: undefined 2: undefined
Whats the deal?! Thanks everyone