Skip to content
Permalink
Newer
Older
100755 39 lines (31 sloc) 1.38 KB
Apr 27, 2016
1
//================================================
2
/*
3
4
Turn Off the Lights
May 14, 2017
5
The entire page will be fading to dark, so you can watch the video as if you were in the cinema.
May 31, 2020
6
Copyright (C) 2020 Stefan vd
Apr 27, 2016
7
www.stefanvd.net
8
www.turnoffthelights.com
9
10
This program is free software; you can redistribute it and/or
11
modify it under the terms of the GNU General Public License
12
as published by the Free Software Foundation; either version 2
13
of the License, or (at your option) any later version.
14
15
This program is distributed in the hope that it will be useful,
16
but WITHOUT ANY WARRANTY; without even the implied warranty of
17
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
GNU General Public License for more details.
19
20
You should have received a copy of the GNU General Public License
21
along with this program; if not, write to the Free Software
22
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23
24
25
To view a copy of this license, visit http://creativecommons.org/licenses/GPL/2.0/
26
27
*/
28
//================================================
29
30
// Search for data and translate it to current use language
31
items = document.querySelectorAll("[data-i18n]");
Dec 22, 2019
32
for(i=0; i<items.length; i++){
Apr 27, 2016
33
var translation = chrome.i18n.getMessage(items[i].getAttribute("data-i18n"));
Dec 22, 2019
34
if(items[i].value === "i18n"){
Apr 27, 2016
35
items[i].value = translation;
Dec 22, 2019
36
}else{
Apr 27, 2016
37
items[i].innerText = translation;
38
}
39
}