Skip to content

Instantly share code, notes, and snippets.

@erikvold
Created April 27, 2013 22:26
Show Gist options
  • Save erikvold/5475001 to your computer and use it in GitHub Desktop.
Save erikvold/5475001 to your computer and use it in GitHub Desktop.
// lib/main.js:
const { Panel } = require("sdk/panel");
const windows = require('sdk/windows').browserWindows;
const { setTimeout } = require('sdk/timers');
windows.on('open', function() {console.log('window opened');
setTimeout(function() Panel({ contentURL: 'https://google.com' }).show(), 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment