Permalink
Apr 27, 2016
May 14, 2017
Apr 27, 2016
Apr 27, 2016
Apr 27, 2016
Apr 27, 2016
Newer
100755
39 lines (31 sloc)
1.38 KB
1
//================================================
2
/*
3
4
Turn Off the Lights
5
The entire page will be fading to dark, so you can watch the video as if you were in the cinema.
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]");
33
var translation = chrome.i18n.getMessage(items[i].getAttribute("data-i18n"));
35
items[i].value = translation;
37
items[i].innerText = translation;
38
}
39
}