blob: fbff178f369c2b703ee8c1f2510319b6464c62e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
function hi() {
chrome.browserAction.setIcon({
path: {
19: "images/icon19disabled.png",
38: "images/icon38disabled.png"
}
});
open('redirector.html');
}
document.addEventListener('DOMContentLoaded', function() {
document.getElementsByTagName('button')[0].addEventListener('click', hi);
})
|