Created
December 4, 2014 19:46
-
-
Save clone1018/9ac4260dab67d475d94f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tabs.open({ | |
url: src, | |
inBackground: true, | |
onLoad: function(tab) { | |
tab.attach({ | |
contentScriptFile: self.data.url("print-page.js") | |
}); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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