/* * http://www.bijint.com/ * * == Start == * js plugins.bijin_clock.start(min) * min: interval minutes (default: 1) * * == Stop == * js plugins.bijin_clock.stop() */ let PLUGIN_INFO = {NAME} Bijin Clock - http://www.bijint.com 0.1 ; liberator.plugins.bijin_clock = (function(){ const BASE_URL = 'http://www.bijint.com/jp/img/photo/'; const TITLE = fromUTF8Octets("美人時計"); const NAME = "Bijin Clock"; let interval = null; function getTimeString(date){ let time = date.toTimeString(); return time.substr(0,2) + time.substr(3,2); } function fromUTF8Octets(octets){ return decodeURIComponent(octets.replace(/[%\x80-\xFF]/g, function(c){ return '%' + c.charCodeAt(0).toString(16); })); } function showBijinClock(){ let date = new Date; let image_src = BASE_URL + getTimeString(date) + ".jpg"; liberator.echomsg(date.toLocaleString(), 0); openDialog('data:application/vnd.mozilla.xul+xml;charset=utf-8,' + <> .toXMLString(), TITLE, 'chrome,dialog=yes,titlebar=no,popup=yes'); } let self = { start: function(){ showBijinClock(); if (interval) this.stop(); interval = window.setInterval(showBijinClock, 60 * 1000); return interval; }, stop: function(){ if (interval){ window.clearInterval(interval); } let w = Cc["@mozilla.org/appshell/window-mediator;1"] .getService(Ci.nsIWindowMediator) .getMostRecentWindow("alert:clock") if (w) w.close(); }, }; setTimeout(function(){showBijinClock();}, 0); setTimeout(function(){self.start();}, 60 * 1000 - Date.now() % (60*1000)); return self; })(); // vim:sw=2 ts=2 et:
path: root/_smooziee.js
blob: 3a7a695d78952e872a40b81a57910170fb3d2af1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157