mirror of
https://github.com/wahyd4/relaxMe.git
synced 2026-08-09 04:46:41 +10:00
17 lines
409 B
JavaScript
17 lines
409 B
JavaScript
(function(){
|
|
/*
|
|
document.getElementById('fullscreen').addEventListener('click',function(){
|
|
|
|
var documentEle = document.documentElement;
|
|
documentEle.webkitRequestFullScreen(); //chrome
|
|
},false);*/
|
|
|
|
document.getElementById('relax').addEventListener('click',function(){
|
|
var tab = chrome.tabs.create({
|
|
selected: true,
|
|
url: 'new.html'
|
|
},function(tab){
|
|
|
|
});
|
|
},false);
|
|
})(); |