forked from ywzhaiqi/userChromeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
userChrome-26.js
863 lines (798 loc) · 35.6 KB
/
userChrome-26.js
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
/* :::::::: Sub-Script/Overlay Loader v3.0.40mod ::::::::::::::: */
// automatically includes all files ending in .uc.xul and .uc.js from the profile's chrome folder
// New Features:
// supports Greasemonkey-style metadata for userChrome scripts and overlays
// supports a "main" shortcut for the main browser window in include/exclude lines
// supports regexes in the include/exclude lines
// scripts without metadata will run only on the main browser window, for backwards compatibility
//
// 1.Including function of UCJS_loader.
// 2.Compatible with Fx2 and Fx3.0b5pre
// 3.Cached script data (path, leafname, regex)
// 4.Support window.userChrome_js.loadOverlay(overlay [,observer]) //
// Modified by Alice0775
//
// Date 2013/10/06 00:00 allow to load scripts into about:xxx
// Date 2013/09/13 00:00 Bug 856437 Remove Components.lookupMethod, remove REPLACEDOCUMENTOVERLAY
// Date 2012/04/19 23:00 starUIをbindを使うように
// Date 2012/04/19 21:00 starUI元に戻した
// Date 2012/02/04 00:00 due to bug 726444 Implement the Downloads Panel.
// Date 2012/02/04 00:00 due to bug 726440
// Date 2011/11/19 15:30 REPLACECACHE 追加 Bug 648125
// Date 2011/09/30 13:40 fix bug 640158
// Date 2011/09/30 13:00 fix bug 640158
// Date 2011/04/07 00:00 hackVersion
// Date 2010/10/10 00:00 Bug 377498 mozIJSSubscriptLoader::loadSubScript charset 入ったけどメタデータ // @charset UTF-8 としとけばUTF-8で読み込む
// Date 2010/03/31 00:00 XULDocumentのみに適用
// Date 2010/03/11 17:30 debugbuildで動かない場合がある件に対応。
// Date 2010/02/28 13:00 ↓が直っているので元に戻した。
// Date 2009/08/06 00:00 tree_style_tab-0.8.2009073102があるとxulのdocument.overlayが出来なくなる件に対応
// Date 2009/05/23 00:00 userChrome.js0.8.1実験中 v3.0.25mod
// Date 2009/04/13 00:00 overlayのobserveの処理変更 v3.0.24mod
// Date 2009/03/10 00:00 例外トラップ
// Date 2009/02/15 15:00 chromehiddenなwindow(popup等)の場合にロードするかどうかを指定できるようにした。
// Date 2008/12/29 06:00 面倒だからdocument.overlayを置き換えるようにした。
// Date 2008/12/27 18:00 Webpanelにchromeを読み込んだときのエラーが出るのを修正(thanks 音吉)
// Date 2008/09/16 00 00 面倒だからFirefox3 の場合はeditBookmarkOverlay.xulは先読みするように修正
// Date 2008/08/28 00 00 なぜか0.8.0+を使っている人がいたので, それに対応
// Date 2008/08/26 23:50 08/26 18:00 以降 Fx2で動かなくなったようなので, 直した
// Date 2008/08/26 22:00 v3.0.11modで動かないなら,これ以降のものも動かないよ。たぶん
// Date 2008/08/26 18:00 Fx3のStarUIをなんとかして欲しいな。
// Date 2008/08/18 04:00 AUTOREMOVEBOM = trueなら文字コード自動判定するようにした。
// Date 2008/08/16 15:00 BOMを自動的に取り除くかどうか指定できるようにした
// Date 2008/07/29 23:00 なんかバグあったかも
// Date 2008/07/25 00:00 USE_0_63_FOLDERおよびFORCESORTSCRIPTがtrueの場合は, フォルダも名順でソートするようにした
// Date 2008/07/14 01:00 typo, regression
// Date 2008/07/14 00:00 typo, regression
// Date 2008/07/13 22:00 サイドバーweb-panelsにchromeウインドウを読み込んだ場合に対応
// Date 2008/03/23 12:00 80氏のフォルダ規則に対応, 0.8modバージョンにも対応
//
(function(){
// -- config --
const EXCLUDE_CHROMEHIDDEN = false; //chromehiddenなwindow(popup等)ではロード: しないtrue, する[false]
const USE_0_63_FOLDER = false; //0.63のフォルダ規則を使う[true], 使わないfalse
const FORCESORTSCRIPT = false; //強制的にスクリプトをファイル名順でソートするtrue, しない[false]
const AUTOREMOVEBOM = false; //BOMを自動的に, 取り除く:true, 取り除かない[false](元ファイルは.BOMとして残る)
const REPLACECACHE = false; //スクリプトの更新日付によりキャッシュを更新する: true , しない:[false]
//=====================USE_0_63_FOLDER = falseの時===================
var UCJS = new Array("UCJSFiles","userContent","userMenu"); //UCJS Loader 仕様を適用 (NoScriptでfile:///を許可しておく)
var arrSubdir = new Array("", "xul","TabMixPlus","withTabMixPlus", "SubScript", "UCJSFiles", "userCrome.js.0.8","userContent","userMenu"); //スクリプトはこの順番で実行される
//===================================================================
const ALWAYSEXECUTE = 'rebuild_userChrome.uc.xul'; //常に実行するスクリプト
var INFO = true;
var BROWSERCHROME = "chrome://browser/content/browser.xul"; //Firfox
//var BROWSERCHROME = "chrome://navigator/content/navigator.xul"; //SeaMonkey:
// -- config --
/* USE_0_63_FOLDER true の時
* chrome直下およびchrome/xxx.uc 内の *.uc.js および *.uc.xul
* chrome/xxx.xul 内の *.uc.js , *.uc.xul および *.xul
* chrome/xxx.ucjs 内の *.uc.js は 特別に UCJS Loader 仕様を適用(NoScriptでfile:///を許可しておく)
*/
/* USE_0.63_FOLDER false の時
*[ フォルダは便宜上複数のフォルダに分けているだけで任意。 下のarrSubdirで指定する ]
*[ UCJS Loaderを適用するフォルダをUCJSで指定する ]
プロファイル-+-chrome-+-userChrome.js(このファイル)
+-*.uc.jsまたは*.uc.xul群
|
+-SubScript--------+-*.uc.jsまたは*.uc.xul群
|
+-UCJSFiles--------+-*.uc.jsまたは*.uc.xul群
| (UCJS_loaderでしか動かないもの JavaScript Version 1.7/日本語)
|
+-xul--------------+-*.xul, *.uc.xulおよび付随File
|
+-userCrome.js.0.8-+-*.uc.jsまたは*.uc.xul群 (綴りが変なのはなぜかって? )
*/
//chromeでないならスキップ
if(!/^chrome:/i.test(location.href)) return;
//コモンダイアログに対するオーバーレイが今のところ無いので時間短縮のためスキップすることにした
if(location.href =='chrome://global/content/commonDialog.xul') return;
if(/.html?$/i.test(location.href)) return;
window.userChrome_js = {
USE_0_63_FOLDER: USE_0_63_FOLDER,
UCJS: UCJS,
arrSubdir: arrSubdir,
FORCESORTSCRIPT: FORCESORTSCRIPT,
ALWAYSEXECUTE: ALWAYSEXECUTE,
AUTOREMOVEBOM: AUTOREMOVEBOM,
INFO: INFO,
BROWSERCHROME: BROWSERCHROME,
EXCLUDE_CHROMEHIDDEN: EXCLUDE_CHROMEHIDDEN,
REPLACECACHE: REPLACECACHE,
get hackVersion () {
delete this.hackVersion;
return this.hackVersion = "0.8";
//拡張のバージョン違いを吸収
this.baseUrl = /^(chrome:\/\/\S+\/content\/)\S+/i.test( Error().fileName).$1;
if (!/^(chrome:\/\/\S+\/content\/)\S+/i.test( Error().fileName) ){
} else if (Error().fileName.indexOf("chrome://uc_js/content/uc_js.xul") > -1 ||
"chrome://userchrome_js_cache/content/userChrome.js" == Error().fileName ){ //0.8.0+ or 0.7
return this.hackVersion = "0.8+";
} else if (Error().fileName.indexOf("chrome://browser/content/browser.xul -> ") == 0) {
return this.hackVersion = "0.8.1";
} else {
return this.hackVersion = "0.8mod";
}
},
//スクリプトデータを作成
getScripts: function(){
const Cc = Components.classes;
const Ci = Components.interfaces;
const ios = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);
const fph = ios.getProtocolHandler("file").QueryInterface(Ci.nsIFileProtocolHandler);
const ds = Cc["@mozilla.org/file/directory_service;1"].getService(Ci.nsIProperties);
var Start = new Date().getTime();
//getdir
if (this.USE_0_63_FOLDER) {
var o = [""];
this.UCJS =[];
this.arrSubdir =[];
var workDir = ds.get("UChrm", Ci.nsIFile);
var dir = workDir.directoryEntries;
while(dir.hasMoreElements()){
var file = dir.getNext().QueryInterface(Ci.nsIFile);
if( !file.isDirectory()) continue;
var dirName = file.leafName;
if(/(uc|xul|ucjs)$/i.test(dirName)){
o.push(dirName);
if(/ucjs$/i.test(dirName)){
this.UCJS.push(dirName);
}
}
}
if(this.FORCESORTSCRIPT){
o.sort(cmp_name);
}
[].push.apply(this.arrSubdir, o);
}
var that = this;
var mediator = Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(Components.interfaces.nsIWindowMediator);
if(mediator.getMostRecentWindow("navigator:browser"))
var mainWindowURL = that.BROWSERCHROME;
else if (mediator.getMostRecentWindow("mail:3pane"))
var mainWindowURL = "chrome://messenger/content/messenger.xul";
this.dirDisable = restoreState(getPref("userChrome.disable.directory", "str", "").split(','));
this.scriptDisable = restoreState(getPref("userChrome.disable.script", "str", "").split(','));
this.scripts = [];
this.overlays = [];
var findNextRe = /^\/\/ @(include|exclude)[ \t]+(\S+)/gm;
this.directory = {name:[], UCJS:[], enable:[]};
for(var i=0, len=this.arrSubdir.length; i<len; i++){
var s = [], o = [];
try{
var dir = this.arrSubdir[i]=="" ? "root" : this.arrSubdir[i];
this.directory.name.push(dir);
this.directory.UCJS.push(checkUCJS(dir));
var workDir = ds.get("UChrm", Ci.nsIFile);
workDir.append(this.arrSubdir[i]);
var files = workDir.directoryEntries.QueryInterface(Ci.nsISimpleEnumerator);
var istream = Cc["@mozilla.org/network/file-input-stream;1"].createInstance(Ci.nsIFileInputStream);
while(files.hasMoreElements()){
var file = files.getNext().QueryInterface(Ci.nsIFile);
if(/\.uc\.js$|\.uc\.xul$/i.test(file.leafName)
|| /\.xul$/i.test(file.leafName) && /\xul$/i.test(this.arrSubdir[i])) {
var script = getScriptData(
this.AUTOREMOVEBOM ? deleteBOMreadFile(file) : readFile(file, true)
,file);
script.dir = dir;
if(/\.uc\.js$/i.test(script.filename)){
script.url = convURL(script.url);
script.ucjs = checkUCJS(script.file.path);
s.push(script);
}else{
script.xul = '<?xul-overlay href=\"'+ script.url +'\"?>\n';
o.push(script);
}
}
}
}catch(e){}
if(this.FORCESORTSCRIPT){
s.sort(cmp_fname);
o.sort(cmp_fname);
}
[].push.apply(this.scripts, s);
[].push.apply(this.overlays, o);
}
this.debug('Parsing getScripts: '+((new Date()).getTime()-Start) +'msec');
//拡張のバージョン違いを吸収
function convURL(url){
switch (userChrome_js.hackVersion) {
case "0.8":
return url;
case "0.8+": // or 0.7
return url;
case "0.8.1":
return url;
case "0.8mod":
return userChrome_js.baseUrl + url.substr(url.indexOf("chrome") + 7);
}
return url;
}
//nameを比較する関数
function cmp_name(a, b) {
if(a.toLowerCase()==b.toLowerCase())
return a < b?-1:1;
else
return a.toLowerCase() < b.toLowerCase()?-1:1;
}
function cmp_fname(a, b) {
return cmp_name(a.filename, b.filename);
}
//UCJSローダ必要か
function checkUCJS(aPath){
for(var i=0,len=that.UCJS.length; i<len; i++){
if( aPath.indexOf(that.UCJS[i], 0)>-1 )
return true;
}
return false;
}
//メタデータ収集
function getScriptData(aContent,aFile){
var charset, description, author, version, homepageURL, reviewURL, downloadURL, fullDescription;
var header = (aContent.match(/^\/\/ ==UserScript==[ \t]*\n(?:.*\n)*?\/\/ ==\/UserScript==[ \t]*\n/m) || [""])[0];
var match, rex = { include: [], exclude: []};
while ((match = findNextRe.exec(header)))
{
rex[match[1]].push(match[2].replace(/^main$/i,mainWindowURL).replace(/\W/g, "\\$&").replace(/\\\*/g, ".*?"));
}
if( rex.include.length == 0) rex.include.push(mainWindowURL);
var exclude = rex.exclude.length > 0 ? "(?!" + rex.exclude.join("$|") + "$)" : "";
match = header.match(/\/\/ @charset\b(.+)\s*/i);
charset = "";
//try
if(match)
charset = match.length > 0 ? match[1].replace(/^\s+/,"") : "";
match = header.match(/\/\/ @description\b(.+)\s*/i);
description = "";
//try
if(match)
description = match.length > 0 ? match[1].replace(/^\s+/,"") : "";
//}catch(e){}
if (description =="" || !description)
description = aFile.leafName;
// version
match = header.match(/\/\/ @version\b(.+)\s*/i);
version = "";
if(match && match.length)
version = match[1].replace(/^\s+/,"").split(" ")[0];
// author
match = header.match(/\/\/ @author\b(.+)\s*/i);
author = "";
if(match)
author = match.length > 0 ? match[1].replace(/^\s+/,"") : "";
// homepageURL
match = header.match(/\/\/ @homepageURL\b(.+)\s*/i);
homepageURL = "";
if(match)
homepageURL = match.length > 0 ? match[1].replace(/^\s+/,"") : "";
// reviewURL
match = header.match(/\/\/ @reviewURL\b(.+)\s*/i);
reviewURL = "";
if(match)
reviewURL = match.length > 0 ? match[1].replace(/^\s+/,"") : "";
// downloadURL
match = header.match(/\/\/ @downloadURL\b(.+)\s*/i);
downloadURL = "";
if(match)
downloadURL = match.length > 0 ? match[1].replace(/^\s+/,"") : "";
// optionsURL
match = header.match(/\/\/ @optionsURL\b(.+)\s*/i);
var optionsURL = "";
if(match)
optionsURL = match.length > 0 ? match[1].replace(/^\s+/,"") : "";
// fullDescription
match = header.match(/\/\/ @note\b(.+)\s*/ig);
fullDescription = "";
var notes = [];
if(match && match.length){
for (var i = 0; i < match.length; i++) {
notes[i] = match[i].replace(/^\/\/ @note\s+/i, "");
}
fullDescription = "\n" + notes.join("\n");
}
var url = fph.getURLSpecFromFile(aFile);
return {
filename: aFile.leafName,
file: aFile,
url: url,
//namespace: "",
charset: charset,
description: description,
version: version,
author: author,
homepageURL: homepageURL,
reviewURL: reviewURL,
downloadURL: downloadURL,
optionsURL: optionsURL,
fullDescription: fullDescription,
//code: aContent.replace(header, ""),
regex: new RegExp("^" + exclude + "(" + (rex.include.join("|") || ".*") + ")$", "i")
}
}
//スクリプトファイル読み込み
function readFile(aFile, metaOnly){
if (typeof metaOnly == 'undefined')
metaOnly = false;
var stream = Cc["@mozilla.org/network/file-input-stream;1"].createInstance(Ci.nsIFileInputStream);
stream.init(aFile, 0x01, 0, 0);
var cvstream = Cc["@mozilla.org/intl/converter-input-stream;1"].
createInstance(Ci.nsIConverterInputStream);
cvstream.init(stream, "UTF-8", 1024, Ci.nsIConverterInputStream.DEFAULT_REPLACEMENT_CHARACTER);
var content = "", data = {};
while (cvstream.readString(4096, data)) {
content += data.value;
if (metaOnly &&
content.indexOf('// ==/UserScript==') > 0)
break;
}
cvstream.close();
return content.replace(/\r\n?/g, "\n");
}
//スクリプトファイル文字コード変換読み込み
function deleteBOMreadFile(aFile){
var UI = Components.classes["@mozilla.org/intl/scriptableunicodeconverter"].
createInstance(Components.interfaces.nsIScriptableUnicodeConverter);
UI.charset = "UTF-8";
var bytes = readBinary(aFile);
try {
if (bytes.length > 3 && bytes.substring(0,3) == String.fromCharCode(239,187,191)){
aFile.copyTo(null, aFile.leafName + ".BOM");
bytes = bytes.substring(3,bytes.length);
writeFile(aFile, bytes);
return UI.ConvertToUnicode(bytes).replace(/\r\n?/g, "\n");
}
var charset = getCharset(bytes);
//window.userChrome_js.debug(aFile.leafName + " " +charset);
if (charset == "UTF-8" || charset == "us-ascii"){
return UI.ConvertToUnicode(bytes).replace(/\r\n?/g, "\n");
} else {
UI.charset = charset;
aFile.copyTo(null, aFile.leafName + "."+UI.charset);
bytes = UI.ConvertToUnicode(bytes);
UI.charset = "UTF-8";
writeFile(aFile, UI.ConvertFromUnicode(bytes));
return bytes.replace(/\r\n?/g, "\n");
}
} catch(ex){
return readFile(aFile);
}
}
//バイナリ読み込み
function readBinary(aFile){
var istream = Components.classes["@mozilla.org/network/file-input-stream;1"]
.createInstance(Components.interfaces.nsIFileInputStream);
istream.init(aFile, -1, -1, false);
var bstream = Components.classes["@mozilla.org/binaryinputstream;1"]
.createInstance(Components.interfaces.nsIBinaryInputStream);
bstream.setInputStream(istream);
return bstream.readBytes(bstream.available());
}
//バイナリ書き込み
function writeFile(aFile, aData){
var foStream = Components.classes["@mozilla.org/network/file-output-stream;1"]
.createInstance(Components.interfaces.nsIFileOutputStream);
// ファイル追記の際は、0x02 | 0x10 を使う
foStream.init(aFile, 0x02 | 0x08 | 0x20, parseInt(664, 8), 0); // write, create, truncate
foStream.write(aData, aData.length);
foStream.close();
return aData;
}
//文字コードを得る
function getCharset(str){
function charCode(str){
if (/\x1B\x24(?:[\x40\x42]|\x28\x44)/.test(str))
return 'ISO-2022-JP';
if (/[\x80-\xFE]/.test(str)){
var buf = RegExp.lastMatch + RegExp.rightContext;
if (/[\xC2-\xFD][^\x80-\xBF]|[\xC2-\xDF][\x80-\xBF][^\x00-\x7F\xC2-\xFD]|[\xE0-\xEF][\x80-\xBF][\x80-\xBF][^\x00-\x7F\xC2-\xFD]/.test(buf))
return (/[\x80-\xA0]/.test(buf)) ? 'Shift_JIS' : 'EUC-JP';
if (/^(?:[\x00-\x7F\xA1-\xDF]|[\x81-\x9F\xE0-\xFC][\x40-\x7E\x80-\xFC])+$/.test(buf))
return 'Shift_JIS';
if (/[\x80-\xA0]/.test(buf))
return 'UTF-8';
return 'EUC-JP';
} else
return 'us-ascii';
}
var charset = charCode(str);
if (charset == "UTF-8" || charset == "us-ascii")
return charset;
//判定に失敗している場合があるので, 再チェック (鈍くさ);
var UI = Components.classes["@mozilla.org/intl/scriptableunicodeconverter"].
createInstance(Components.interfaces.nsIScriptableUnicodeConverter);
try {
UI.charset = "UTF-8";
if (str === UI.ConvertFromUnicode(UI.ConvertToUnicode(str)))
return "UTF-8";
} catch(ex){}
try {
UI.charset = charset;
if (str === UI.ConvertFromUnicode(UI.ConvertToUnicode(str)))
return charset;
} catch(ex){}
return "UTF-8";
}
//prefを読み込み
function getPref(aPrefString, aPrefType, aDefault){
var xpPref = Components.classes['@mozilla.org/preferences-service;1']
.getService(Components.interfaces.nsIPrefService);
try{
switch (aPrefType){
case 'complex':
return xpPref.getComplexValue(aPrefString, Components.interfaces.nsILocalFile); break;
case 'str':
return unescape(xpPref.getCharPref(aPrefString).toString()); break;
case 'int':
return xpPref.getIntPref(aPrefString); break;
case 'bool':
default:
return xpPref.getBoolPref(aPrefString); break;
}
}catch(e){
}
return aDefault;
}
//pref文字列変換
function restoreState(a){
try{
var sd = [];
for(var i = 0,max = a.length;i < max;++i) sd[unescape(a[i])] = true;
return sd;
}
catch(e){ return []; }
}
},
getLastModifiedTime: function(aScriptFile) {
try {
if (this.REPLACECACHE) {
var aLocalfile = Components.classes["@mozilla.org/file/local;1"]
.createInstance(Components.interfaces.nsILocalFile);
aLocalfile.initWithPath(aScriptFile.path);
return aLocalfile.lastModifiedTime;
}
return aScriptFile.lastModifiedTime;
} catch(e) {}
return "";
},
//window.userChrome_js.loadOverlay
overlayWait:0,
overlayUrl:[],
loadOverlay: function(url, observer, doc){
window.userChrome_js.overlayUrl.push([url, observer, doc]);
if(!window.userChrome_js.overlayWait) window.userChrome_js.load(++window.userChrome_js.overlayWait);
},
load: function (){
if(!window.userChrome_js.overlayUrl.length) return --window.userChrome_js.overlayWait;
var [url, aObserver, doc] = this.overlayUrl.shift();
if (!!aObserver && typeof aObserver == 'function') {
aObserver.observe = aObserver;
}
if (!doc) doc = document;
if (!(doc instanceof XULDocument))
return 0;
var observer = {
observe:function (subject, topic, data) {
if (topic == 'xul-overlay-merged') {
//XXX We just caused localstore.rdf to be re-applied (bug 640158)
if ("retrieveToolbarIconsizesFromTheme" in window)
retrieveToolbarIconsizesFromTheme();
if (!!aObserver && typeof aObserver.observe == 'function') {
try {
aObserver.observe(subject, topic, data);
} catch(ex){
window.userChrome_js.error(url, ex);
}
}
if ('userChrome_js' in window)
window.userChrome_js.load();
}
},
QueryInterface: function(aIID){
if(!aIID.equals(Components.interfaces.nsISupports)
&& !aIID.equals(Components.interfaces.nsIObserver))
throw Components.results.NS_ERROR_NO_INTERFACE;
return this
}
};
//if (this.INFO) this.debug("document.loadOverlay: " + url);
try{
doc.loadOverlay(url, observer);
} catch(ex){
window.userChrome_js.error(url, ex);
}
return 0;
},
//xulを読み込む
runOverlays: function(doc){
try {
var dochref = doc.location.href;
} catch (e) {
return;
}
var overlay;
if( true ){ //← uc.jsでのloadOverlayに対応
for(var m=0,len=this.overlays.length; m<len; m++){
overlay = this.overlays[m];
if( overlay.filename != this.ALWAYSEXECUTE
&& ( !!this.dirDisable['*']
|| !!this.dirDisable[overlay.dir]
|| !!this.scriptDisable[overlay.filename]) ) continue;
// decide whether to run the script
if(overlay.regex.test(dochref)){
if (this.INFO) this.debug("loadOverlay: " + overlay.filename);
this.loadOverlay(overlay.url + "?" + this.getLastModifiedTime(overlay.file), null, doc);
}
}
}else{
var XUL = '<?xml version="1.0"?>\n';
var count =0;
for(var m=0,len=this.overlays.length; m<len; m++){
overlay = this.overlays[m];
if( overlay.filename != this.ALWAYSEXECUTE
&& ( !!this.dirDisable['*']
|| !!this.dirDisable[overlay.dir]
|| !!this.scriptDisable[overlay.filename]) ) continue;
// decide whether to run the script
if(overlay.regex.test(dochref)){
XUL += overlay.xul;
count++;
}
}
if(count==0) return;
XUL += '<overlay id="userChrome.uc.js-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml">\n</overlay>\n';
try{
if (this.INFO) this.debug("loadOverlay: " + XUL);
doc.loadOverlay("data:application/vnd.mozilla.xul+xml;charset=utf-8," + XUL,null);
}catch(ex){
this.error(XUL, ex);
}
}
},
//uc.jsを読み込む
runScripts: function(doc){
try {
var dochref = doc.location.href;
} catch (e) {
return;
}
if (!(doc instanceof XULDocument))
return;
if(!!this.dirDisable['*']) return;
var script, aScript, url;
const Cc = Components.classes;
const Ci = Components.interfaces;
const maxJSVersion = (function getMaxJSVersion() {
var appInfo = Components
.classes["@mozilla.org/xre/app-info;1"]
.getService(Components.interfaces.nsIXULAppInfo);
var versionChecker = Components
.classes["@mozilla.org/xpcom/version-comparator;1"]
.getService(Components.interfaces.nsIVersionComparator);
// Firefox 3.5 and higher supports 1.8.
if (versionChecker.compare(appInfo.version, "3.5") >= 0) {
return "1.8";
}
// Firefox 2.0 and higher supports 1.7.
if (versionChecker.compare(appInfo.version, "2.0") >= 0) {
return "1.7";
}
// Everything else supports 1.6.
return "1.6";
})();
for(var m=0,len=this.scripts.length; m<len; m++){
script = this.scripts[m];
if(!!this.dirDisable[script.dir]) continue;
if(!!this.scriptDisable[script.filename]) continue;
if( !script.regex.test(dochref)) continue;
if( script.ucjs ){ //for UCJS_loader
if (this.INFO) this.debug("loadUCJSSubScript: " + script.filename);
aScript = doc.createElementNS("http://www.w3.org/1999/xhtml", "script");
aScript.type = "application/javascript; version=" + maxJSVersion.toString().substr(0,3);
aScript.src = script.url + "?" + this.getLastModifiedTime(script.file);
try {
doc.documentElement.appendChild(aScript);
}catch(ex) {
this.error(script.filename, ex);
}
}else{ //Not for UCJS_loader
if (this.INFO) this.debug("loadSubScript: " + script.filename);
try {
if (script.charset)
Cc["@mozilla.org/moz/jssubscript-loader;1"].getService(Ci.mozIJSSubScriptLoader)
.loadSubScript(script.url + "?" + this.getLastModifiedTime(script.file),
doc.defaultView, script.charset);
else
Cc["@mozilla.org/moz/jssubscript-loader;1"].getService(Ci.mozIJSSubScriptLoader)
.loadSubScript(script.url + "?" + this.getLastModifiedTime(script.file),
doc.defaultView, "UTF-8");
}catch(ex) {
this.error(script.filename, ex);
}
}
}
},
/**
* 指定したバージョン文字列と現在の Gecko のバージョンを比較する
* @param {String} aVersion バージョン文字列(e.g. "1.8" "1.7.5")
* @return {Number}
* 実際のバージョンより指定したバージョンの方が新しければ 1、同じなら 0、古ければ -1
* @see nsIVersionComparator
* 例Gecko 1.9.0の環境で geckoVersionCompare("1.9.1") とすれば1
* 例Gecko 1.9.0の環境で geckoVersionCompare("1.8.5") とすれば-11が返される
*/
geckoVersionCompare: function ChaikaBrowser_geckoVersionCompare(aVersion){
var versionComparator = Cc["@mozilla.org/xpcom/version-comparator;1"]
.getService(Ci.nsIVersionComparator);
var appInfo = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULAppInfo);
return versionComparator.compare(aVersion, appInfo.platformVersion);
},
//Fxのバージョンを 数値で返す 3.0 3.5 とか 3.6とか
getVer: function(){
var info = Components.classes["@mozilla.org/xre/app-info;1"]
.getService(Components.interfaces.nsIXULAppInfo);
var ver = parseInt(info.version.substr(0,3) * 10,10) / 10;
return ver;
},
debug: function(aMsg){
Components.classes["@mozilla.org/consoleservice;1"]
.getService(Components.interfaces.nsIConsoleService)
.logStringMessage(aMsg);
},
error: function(aMsg,err){
const CONSOLE_SERVICE = Components.classes['@mozilla.org/consoleservice;1']
.getService(Components.interfaces.nsIConsoleService);
var error = Components.classes['@mozilla.org/scripterror;1']
.createInstance(Components.interfaces.nsIScriptError);
if(typeof(err) == 'object') error.init(aMsg + '\n' + err.name + ' : ' + err.message,err.fileName || null,null,err.lineNumber,null,2,err.name);
else error.init(aMsg + '\n' + err + '\n',null,null,null,null,2,null);
CONSOLE_SERVICE.logMessage(error);
}
};
//少しでも速くするためスクリプトデータの再利用
var prefObj = Components.classes["@mozilla.org/preferences-service;1"]
.getService(Components.interfaces.nsIPrefService);
try{
var pref = prefObj.getBoolPref("userChrome.enable.reuse");
}catch(e){
var pref = true;
}
var that = window.userChrome_js;
window.xxdebug = that.debug;
//that.debug(typeof that.getScriptsDone);
if(pref){
//現在のメインウィンドウは一度もuserChrome.jsのスクリプトで初期化されていない?
if(!that.getScriptsDone){
//Firefox or Thunderbard?
var mediator = Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(Components.interfaces.nsIWindowMediator);
if(mediator.getMostRecentWindow("navigator:browser"))
var windowType = "navigator:browser";
else if (mediator.getMostRecentWindow("mail:3pane"))
var windowType = "mail:3pane";
var enumerator = mediator.getEnumerator(windowType);
//他の身内のメインウィンドウではどうかな?
while(enumerator.hasMoreElements()) {
var win = enumerator.getNext();
//身内のメインウインドウは初期状態でない?
if(win.userChrome_js && win.userChrome_js.getScriptsDone){
//オブジェクトはたぶんこのウインドウのを複製すりゃいいんじゃぁないかな
that.UCJS = win.userChrome_js.UCJS;
that.arrSubdir = win.userChrome_js.arrSubdir;
that.scripts = win.userChrome_js.scripts;
that.overlays = win.userChrome_js.overlays;
that.dirDisable = win.userChrome_js.dirDisable;
that.scriptDisable = win.userChrome_js.scriptDisable;
that.getScriptsDone = true;
break;
}
}
}
}
if(!that.getScriptsDone){
if (that.INFO) that.debug("getScripts");
that.getScripts();
that.getScriptsDone= true;
}else{
if (that.INFO) that.debug("skip getScripts");
}
var href = location.href;
var doc = document;
//Bug 330458 Cannot dynamically load an overlay using document.loadOverlay
//until a previous overlay is completely loaded
if (that.INFO) that.debug("load " + href);
//chromehiddenならロードしない
if (location.href === that.BROWSERCHROME &&
that.EXCLUDE_CHROMEHIDDEN &&
document.documentElement.getAttribute("chromehidden") !="" )
return;
if( that.getVer()<3 ){
setTimeout(function(doc){that.runScripts(doc);
setTimeout(function(doc){that.runOverlays(doc);},0, doc);
},0, doc);
}else{
setTimeout(function(doc){
that.runScripts(doc);
//面倒だからFirefox 3 の場合はeditBookmarkOverlay.xulを先読みしておく
var delay = 500;
if (location.href === that.BROWSERCHROME &&
typeof StarUI != 'undefined' &&
!(StarUI._overlayLoading || StarUI._overlayLoaded)) {
// xxxx bug 726440
StarUI._overlayLoading = true;
that.loadOverlay(
"chrome://browser/content/places/editBookmarkOverlay.xul",
(function (aSubject, aTopic, aData) {
//XXX We just caused localstore.rdf to be re-applied (bug 640158)
if ("retrieveToolbarIconsizesFromTheme" in window)
retrieveToolbarIconsizesFromTheme();
// Move the header (star, title, button) into the grid,
// so that it aligns nicely with the other items (bug 484022).
let header = this._element("editBookmarkPanelHeader");
let rows = this._element("editBookmarkPanelGrid").lastChild;
rows.insertBefore(header, rows.firstChild);
header.hidden = false;
this._overlayLoading = false;
this._overlayLoaded = true;
//this._doShowEditBookmarkPanel(aItemId, aAnchorElement, aPosition);
}).bind(StarUI)
);
delay = 0;
}
setTimeout(function(doc){that.runOverlays(doc);}, delay, doc);
},500, doc);
}
//Sidebar for Trunc
if(location.href != that.BROWSERCHROME) return;
if(that.getVer()>2 ){
window.document.addEventListener("load",
function(event){
if (!event.originalTarget.location) return;
if( !/^(about:|chrome:)/.test(event.originalTarget.location.href) )return;
var doc = event.originalTarget;
var href = doc.location.href;
if (that.INFO) that.debug("load Sidebar " + href);
setTimeout(function(doc){that.runScripts(doc);
setTimeout(function(doc){that.runOverlays(doc);}, 0, doc);
},0, doc);
if (href != "chrome://browser/content/web-panels.xul") return;
if (!window.document.getElementById("sidebar")) return;
var sidebarWindow = window.document.getElementById("sidebar").contentWindow;
if (sidebarWindow){
loadInWebpanel.init(sidebarWindow);
}
}
, true);
}
var loadInWebpanel = {
sidebarWindow: null,
init: function(sidebarWindow){
this.sidebarWindow = sidebarWindow;
this.sidebarWindow.document.getElementById("web-panels-browser").addEventListener("load", this, true);
this.sidebarWindow.addEventListener("unload", this, false);
},
handleEvent: function(event){
switch (event.type) {
case "unload":
this.uninit(event);
break;
case "load":
this.load(event);
break;
}
},
uninit: function(event){
this.sidebarWindow.document.getElementById("web-panels-browser").removeEventListener("load", this, true);
this.sidebarWindow.removeEventListener("unload", this, false);
},
load: function(event){
var doc = event.originalTarget;
var href = doc.location.href;
if( !/^chrome:/.test(href) )return;
if (that.INFO) that.debug("load Webpanel " + href);
setTimeout(function(doc){that.runScripts(doc);
setTimeout(function(doc){that.runOverlays(doc);},0, doc);
},0, doc);
}
}
})();