blob: b732f8df4e5caee9cf68766306cc5a53de684d66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
document.addEventListener('DOMContentLoaded', init);
function init(){
var elem = document.getElementById('on');
elem.addEventListener('click',funcon);
var elem2 = document.getElementById('off');
elem2.addEventListener('click',funcoff);
}
function funcon(){
chrome.tabs.insertCSS({
code: "body{transition: opacity 0.2s ease-in; opacity: 1}"
});
}
function funcoff(){
chrome.tabs.insertCSS({
code: "body{transition: opacity 0.2s ease-in; opacity: 0}"
});
}
|