Skip to content

Instantly share code, notes, and snippets.

@clone1018
Created December 4, 2014 19:46
Show Gist options
  • Save clone1018/9ac4260dab67d475d94f to your computer and use it in GitHub Desktop.
Save clone1018/9ac4260dab67d475d94f to your computer and use it in GitHub Desktop.
tabs.open({
url: src,
inBackground: true,
onLoad: function(tab) {
tab.attach({
contentScriptFile: self.data.url("print-page.js")
});
}
});
alert('yup');
document.addEventListener('pagerender', function(e) {
alert("test");
}, true, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment