test-sidebar-addon-global.html 177 B

12345678910
  1. <script>
  2. addon.port.on('X', function(msg) {
  3. // last message
  4. addon.port.emit('X', msg + '3');
  5. });
  6. // start messaging chain
  7. addon.port.emit('Y', '1');
  8. </script>
  9. SIDEBAR TEST