This repository has been archived by the owner on Mar 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreadme.html
3137 lines (3131 loc) · 141 KB
/
readme.html
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
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Opera SimpleU Edition</title>
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background: #4E5869;
margin: 0;
padding: 0;
color: #000;
}
ul, ol, dl {
padding: 0;
margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
margin-top: 0;
padding-right: 15px;
padding-left: 15px;
}
a img {
border: none;
}
a:link {
color:#414958;
text-decoration: underline;
}
a:visited {
color: #4E5869;
text-decoration: underline;
}
a:hover, a:active, a:focus {
text-decoration: none;
}
.container {
width: 80%;
max-width: 1260px;/* 可能需要最大宽度,以防止此布局在大型显示器上过宽。这将使行长度更便于阅读。IE6 不遵循此声明。 */
min-width: 780px;/* 可能需要最小宽度,以防止此布局过窄。这将使侧面列中的行长度更便于阅读。IE6 不遵循此声明。 */
background: #FFF;
margin: 0 auto;
overflow: hidden;
}
.sidebar1 {
float: left;
width: 20%;
background: #93A5C4;
padding-bottom: 10px;
}
.content {
padding: 10px 0;
width: 80%;
float: left;
}
.content ul, .content ol {
padding: 0 15px 15px 40px;
}
/* ~~ 导航列表样式(如果选择使用预先创建的 Spry 等弹出菜单,则可以删除此样式) ~~ */
ul.nav {
list-style: none; /* 这将删除列表标记 */
border-top: 1px solid #666; /* 这将为链接创建上边框 – 使用下边框将所有其它项放置在 LI 中 */
margin-bottom: 15px; /* 这将在下面内容的导航之间创建间距 */
}
ul.nav li {
border-bottom: 1px solid #666; /* 这将创建按钮间隔 */
}
ul.nav a, ul.nav a:visited {
padding: 5px 5px 5px 15px;
display: block;
text-decoration: none;
background: #8090AB;
color: #000;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus {
background: #6F7D94;
color: #FFF;
}
.fltrt {
float: right;
margin-left: 8px;
}
.fltlft {
float: left;
margin-right: 8px;
}
.clearfloat {
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
#waring {
color: #F00;
}
#key {
color: #008000;
}
#key {
color: #008000;
}
.container .content table tr th {
color: #0080FF;
}
-->
</style><!--[if lte IE 7]>
<style>
.content { margin-right: -1px; } /* 此 1px 负边距可以放置在此布局中的任何列中,且具有相同的校正效果。 */
ul.nav a { zoom: 1; } /* 缩放属性将为 IE 提供其需要的 hasLayout 触发器,用于校正链接之间的额外空白 */
</style>
<![endif]-->
</head>
<body>
<div class="container">
<div class="sidebar1">
<ul class="nav">
<li><a href="#mod">定制和参数详解</a></li>
<li><a href="#keyboard">快捷键</a></li>
<li><a href="#mouse">鼠标手势</a></li>
<li><a href="#qa">常见问题解答</a></li>
<li><a href="#plugins">插件的选择</a></li>
<li><a href="#rss">RSS订阅的添加</a></li>
<li><a href="#fastforward">超级快进的完善</a></li>
<li><a href="#skin">皮肤的修改</a></li>
<li><a href="http://simpleu.googlecode.com/svn/trunk/Opera/changelog.txt">历史更新记录</a></li>
<li><a href="http://get-tsw-1.opera.com/ftp/pub/opera/win/">Opera下载</a><a href="ftp://ftp.opera.com/pub/opera/win/">官方FTP下载</a></li>
<li>无关的儿歌:<br />
逛逛蜻,来过河,<br />
你一个,我一个,<br />
扫帚底下还一个,<br />
唉,又逮一个。<a href="#history"></a></li>
</ul>
<p><!-- end .sidebar1 --></p>
</div>
<div class="content">
<p><a href="http://opera.im">Opera.im</a> <a href="http://www.opera.com/docs/browserjs/">browserjs</a> <a href="http://oc.ls.tl/">Opera中文社区</a> <a href="http://bbs.kafan.cn/forum-221-1.html">卡饭Opera区</a> <a href="http://tieba.baidu.com/f?ie=utf-8&kw=opera">Opera贴吧</a> <a href="https://me.alipay.com/vokins">捐助SimpleU</a> </p>
<p>优秀的第三方定制版Opera/数据 下载:<a href="http://opera-ac.net/">Opera-ac</a> <a href="http://www.ezopera.com/">Opera白菜版</a> <a href="http://code.google.com/p/operatool/">Opera紫电版</a> <a href="https://github.com/atmouse-/Opera-CC">Opera-CC</a><a href="http://weibo.com/9shua">Opera NaNa</a> <a href="https://github.com/Csineneo/Opera/">Opera-CS</a> <a href=" http://arc.opera.com/pub/opera/">Opera旧版本存档</a></p>
<h1>Opera SimpleU Edition<a id="top"></a></h1>
<p id="waring">请注意,用之前务必先阅读一下本介绍!<br />
不建议跨版本安装,情先备份个人数据!<br />
删除旧版后,安装新版,恢复个人数据!</p>
<p>SimpleU定制版调用了Opera自带的安装界面。<br />
当然,对于想使用绿色版的朋友可以用7-zip等压缩软件右键直接解压即可。<br />
如果您设置了Opera为默认浏览器,请自行修改配置文件内相应的相对路径为绝对路径!<br />
或到Opera目录下运行一下Greenpath工具,以解决通过调用打开链接时的相对路径问题!<br />
</p>
<h2>1 and More,至简智用<a id="mod"></a></h2>
<p><code>配置调整<br />
搜索引擎(括号内为搜索关键字):</code></p>
<option></option>
<p><code> Google(g) 百度(b) Bing(by) DuckDuckGo(d) StartPage(ss) 有道(yd)维基百科(w)百Google度(bg)
FTP 搜索(ftp) ed2k共享(ed)SimpleCD(sc) BT迷(bm) Mininova(m) TorrentDown(td) Kat.Ph(kp)
看电影(dy) 找音乐(3) 搜视频(s) 下软件(x) 寻字体(zt) 求字幕(zm) 新华字典(z) 爱词霸(i) 成语歇后语(cy)
淘宝(t) 卓越亚马逊(z) 惠惠比价(hh) QQ聊天(q)</code></p>
<p><code>启用双击关闭标签<br />
启用在新窗口中打开链接<br />
启用超级拖拽(拖曳并在后台打开链接)<br />
启用在当前标签旁打开新标签<br />
启用下载管理器(自动检测已安装的下载软件)<br />
启用了单键快捷键<br />
启用了用户Javascript 默认设置路径为profile\script</code></p>
<p><code>不允许Javascript脚本检测右键单击<br />
不启用服务发现通知<br />
不启用使用统计<br />
不显示网速变化通知<br />
不启用拼写检查<br />
不开启在邮件中阻止外部元素<br />
不在标签上嵌入缩略图<br />
不开启双击文本弹出右键菜单<br />
不检查自动更新<br />
不开启内置的BitTorrent|Enable功能<br />
关闭了地理位置信息共享<br />
关闭了语音控制浏览功能<br />
关闭了程序声音通知功能</code></p>
<p><code>设置首页为:https://www.google.com/ncr<br />
设置版本UA信息为:SimpleU<br />
设置User JS Storage Quota=102400以方便JS文件的使用<br />
设置了更大的磁盘缓存<br />
设置了额外默认显示的皮肤<br />
Opera:config首选项中添加了中文注释<br />
移植了Opera中国版的fastforward.ini(超级快进配置)文件<br />
调整了了载入和渲染页面参数<br />
完善了默认的订阅列表更适合中国用户<br />
包含了部分常用的插件<br />
修改了部分快捷键更好用<br />
添加最棒的UrlFilter和原创的CSS广告过滤<br />
修改了鼠标手势更顺手</code></p>
<h3>快捷键修改详见:standard_keyboard.ini<a id="keyboard"></a></h3>
<p align="right"><a href="#top">ˆTop</a></p>
<table width="557" border="1">
<caption></caption>
<tr>
<th colspan="2" scope="row">以下快捷键与主流浏览器通用:</th>
</tr>
<tr>
<th scope="row">F1</th>
<td><strong>帮助</strong></td>
</tr>
<tr>
<th scope="row">F11</th>
<td><strong>全屏显示</strong></td>
</tr>
<tr>
<th scope="row">Esc</th>
<td><strong>停止</strong></td>
</tr>
<tr>
<th scope="row">Alt + Home</th>
<td><strong>新建主页标签</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + R / F5</th>
<td><strong>刷新(重新载入)</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + F5</th>
<td><strong>刷新所有标签页</strong></td>
</tr>
<tr>
<th scope="row">Alt + F5</th>
<td><strong>刷新框架 </strong></td>
</tr>
<tr>
<th scope="row">Ctrl + Shift + N</th>
<td><strong>新建隐私窗口</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + N</th>
<td><strong>打开新窗口</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + T</th>
<td><strong>新建标签</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + Tab</th>
<td><strong>切换标签</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + F4 / Ctrl + W</th>
<td><strong>关闭当前标签</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + Shift + T / Alt + Z</th>
<td><strong>撤销关闭标签(页面)</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + Shift + W</th>
<td><strong>关闭全部标签</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + B</th>
<td><strong>显示/隐藏收藏栏 </strong></td>
</tr>
<tr>
<th scope="row">Ctrl + D</th>
<td><strong>添加收藏</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + F</th>
<td><strong>页面内查找</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + H</th>
<td><strong>查看历史记录</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + J</th>
<td><strong>打开下载管理器</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + O</th>
<td><strong>打开文件</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + P</th>
<td><strong>打印…</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + Q</th>
<td><strong>老板键(退出)</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + S</th>
<td><strong>保存网页</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + Num+</th>
<td><strong>页面放大</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + Num0</th>
<td><strong>恢复页面到100%</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + Num-</th>
<td><strong>页面缩小</strong></td>
</tr>
<tr>
<th scope="row">Alt + D / Ctrl + L</th>
<td><strong>选中地址栏</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + Shift + I</th>
<td><strong>开发人员工具</strong></td>
</tr>
<tr>
<th scope="row">Ctrl + Shift + Delete</th>
<td><strong>清除上网痕迹</strong></td>
</tr>
<tr>
<th colspan="2" scope="row">以下为Opera或SimpleU定制版独有快捷键功能</th>
</tr>
<tr>
<th width="271" scope="row">Ctrl+1/2…9</th>
<td width="270">能按SpeedDial顺序打开相应网址</td>
</tr>
<tr>
<th height="32" scope="row">输入"." (dot)</th>
<td><p>打开页面搜索栏,支持高亮</p></td>
</tr>
<tr>
<th scope="row">输入"," (逗号)</th>
<td>只搜索带有超链接的文字</td>
</tr>
<tr>
<th scope="row">F4</th>
<td>显示/隐藏侧边栏</td>
</tr>
<tr>
<th scope="row">F8</th>
<td>快速聚焦到"地址栏"</td>
</tr>
<tr>
<th scope="row">Ctrl + E</th>
<td>快速聚焦到"搜索栏"</td>
</tr>
<tr>
<th scope="row">按住 Ctrl 键的同时单击图片</th>
<td>可以快速保存图片</td>
</tr>
<tr>
<th scope="row">Shift + F5</th>
<td>刷新页面(每隔3分钟) </td>
</tr>
<tr>
<th scope="row">Ctrl + Shift + M</th>
<td>浏览器静音</td>
</tr>
<tr>
<th scope="row">Ctrl + M</th>
<td>链接对话框;</td>
</tr>
<tr>
<th scope="row">Ctrl + F9</th>
<td>Opera:Config</td>
</tr>
<tr>
<th scope="row">Ctrl + Alt + R</th>
<td>刷新样式表</td>
</tr>
<tr>
<th scope="row">Ctrl + Alt + Up</th>
<td>自动滚屏(可加速)</td>
</tr>
<tr>
<th scope="row">Ctrl + Alt + Down</th>
<td>自动滚屏停止</td>
</tr>
<tr>
<th scope="row">Ctrl + Shift + F</th>
<td>最大化当前帧</td>
</tr>
<tr>
<th colspan="2" scope="row">定义单键快捷键:</th>
</tr>
<tr>
<th scope="row">B</th>
<td>用百度搜索选中的文本内容</td>
</tr>
<tr>
<th scope="row">I</th>
<td> 刷新所有图像</td>
</tr>
<tr>
<th scope="row">O </th>
<td>快速缩放按键</td>
</tr>
<tr>
<th scope="row">T</th>
<td> 显示隐藏状态栏</td>
</tr>
<tr>
<th scope="row">X</th>
<td> 快进</td>
</tr>
<tr>
<th scope="row">Z</th>
<td> 后退(关闭标签)</td>
</tr>
<tr>
<th scope="row">F10</th>
<td> WebCacheView工具</td>
</tr>
<tr>
<th colspan="2" scope="row">定义组合快捷键:</th>
</tr>
<tr>
<th scope="row">g,1</th>
<td> 伪装为Firefox</td>
</tr>
<tr>
<th scope="row">g,2</th>
<td> 伪装为IE浏览器</td>
</tr>
<tr>
<th scope="row">g,i</th>
<td> 用IE打开当前页面</td>
</tr>
<tr>
<th scope="row">g,t</th>
<td>用世界之窗浏览器打开当前页面</td>
</tr>
<tr>
<th scope="row">g,a</th>
<td>添加到Google书签</td>
</tr>
<tr>
<th scope="row">g,c</th>
<td>Google快照</td>
</tr>
<tr>
<th scope="row">g,g</th>
<td>用Google搜索选中的文本内容</td>
</tr>
<tr>
<th scope="row">g,m</th>
<td>Goo.gl短链生成</td>
</tr>
<tr>
<th scope="row">g,f</th>
<td>在本页之中高亮搜索当前选择的文本</td>
</tr>
<tr>
<th scope="row">g,r</th>
<td>将当前网址订阅到GoogleReader</td>
</tr>
<tr>
<th scope="row">g,s</th>
<td>将选中文本转到搜索框之中</td>
</tr>
<tr>
<th scope="row">g,y</th>
<td>解除右键限制</td>
</tr>
<tr>
<th scope="row">g,w</th>
<td>解除webkit前缀限制</td>
</tr>
<tr>
<th scope="row">g,v</th>
<td>解除播放插件限制</td>
</tr>
<tr>
<th scope="row">g,z</th>
<td>选中文本提交到Google进行站内搜索</td>
</tr>
<tr>
<th scope="row">Alt+A</th>
<td>收藏夹菜单</td>
</tr>
<tr>
<th scope="row">Alt+C</th>
<td>Simpleu快捷分享菜单</td>
</tr>
<tr>
<th scope="row">Alt+E</th>
<td>编辑模式</td>
</tr>
<tr>
<th scope="row">Alt+F</th>
<td>视频解析</td>
</tr>
<tr>
<th scope="row">Alt+I</th>
<td>显示盗链图片</td>
</tr>
<tr>
<th scope="row">Alt+J</th>
<td>启用/禁用JS</td>
</tr>
<tr>
<th scope="row">Alt+K</th>
<td>复制标签</td>
</tr>
<tr>
<th scope="row">Alt+L</th>
<td>复制页面标题和链接</td>
</tr>
<tr>
<th scope="row">Alt+N</th>
<td>新建隐私标签</td>
</tr>
<tr>
<th scope="row">Alt+O</th>
<td>打开Opera文件夹</td>
</tr>
<tr>
<th scope="row">Alt+P</th>
<td>代理开关</td>
</tr>
<tr>
<th scope="row">Alt+Q</th>
<td>切换为 自动/手动 填表</td>
</tr>
<tr>
<th scope="row">Alt+R</th>
<td>Readability</td>
</tr>
<tr>
<th scope="row">Alt+T</th>
<td>Opera关于</td>
</tr>
<tr>
<th scope="row">Alt+U</th>
<td>HostsTool</td>
</tr>
<tr>
<th scope="row">Alt+X</th>
<td>快速引用;空白页面访问剪切板网址或进行google搜索</td>
</tr>
<tr>
<th colspan="2" scope="row"><a href="#top">ˆTop</a></th>
</tr>
</table><p><br />
<strong>鼠标手势修改详见:standard_mouse.ini<a id="mouse"></a></strong></p>
<table width="92%" border="1">
<tr>
<td width="19%">↑ 上</td>
<td width="81%">转到页面顶部 | 如果当前页面在刷新则停止载入</td>
</tr>
<tr>
<td>↑↓上-下</td>
<td>刷新</td>
</tr>
<tr>
<td>↑← 上-左</td>
<td>转到本标签左边的标签</td>
</tr>
<tr>
<td>↑→ 上-右</td>
<td>转到本标签右边的标签</td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td>↓ 下 <br /></td>
<td>转到页面底部 | 如果在页面的链接上使用本手势,则在后台打开该链接</td>
</tr>
<tr>
<td>↓↑ 下-上</td>
<td>新建隐身标签</td>
</tr>
<tr>
<td>↓← 下-左</td>
<td>关闭当前标签</td>
</tr>
<tr>
<td>↓→ 下-右</td>
<td>恢复刚才关闭的标签</td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td>← 左</td>
<td>后退,超级后退 | 自动翻页上一页</td>
</tr>
<tr>
<td>←→ 左-右</td>
<td>克隆标签</td>
</tr>
<tr>
<td>←↑ 左-上</td>
<td>转到上级目录</td>
</tr>
<tr>
<td>←↓ 左-下</td>
<td>快退</td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td>→ 右</td>
<td>登录 Wand填表 | 前进,超级快进 | 自动翻页下一页</td>
</tr>
<tr>
<td>→← 右-左</td>
<td>锁定标签 | 解锁标签</td>
</tr>
<tr>
<td>→↑ 右-上</td>
<td>访问该网址 | 搜索该内容</td>
</tr>
<tr>
<td>→↓ 右-下</td>
<td>下载</td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td>↑↓↑上下上</td>
<td>退出,关闭所有窗口,这些窗口在下次启动时会被恢复</td>
</tr>
<tr>
<td>按住右键点左键</td>
<td> 快退</td>
</tr>
<tr>
<td>点住左键按右键</td>
<td>转到下个标签页 | 复制选中文本</td>
</tr>
<tr>
<td colspan="2"><div align="center"><a href="#top">ˆTop</a></div></td>
</tr>
</table>
<p> </p>
<p>Override.ini(站点首选项)相关<a id="keyboard2"></a>:</p>
<ol>
<li>路由器设置不过滤</li>
<li>编码修正:天极网,玄幻小说网,易摄网</li>
<li><a href="http://bbs.operachina.com/viewtopic.php?f=30&t=104229">图片反盗链</a>:包含众多常用图像和视频服务器的反盗链设置</li>
<li>站点信息识别修正:一些政府和高校等网站的UA伪装,以解决部分兼容性问题,<a href="http://bbs.operachina.com/viewtopic.php?f=30&t=104229"></a>提高部分站点插件的兼容性</li>
<li>站点过滤白名单设置:常用购物网站等的全站豁免,防止广告误杀。</li>
<li>国内常用站点默认不使用代理:此设置在“白鸽子”的列表基础上加入一些视频网站</li>
<li>CSS页面:页面的美化和功能的超越,如:<a href="https://addons.opera.com/addons/extensions/details/hide-gmail-ads/">Gmail界面的广告隐藏</a> <a href="http://bbs.operachina.com/viewtopic.php?f=41&t=103429#p648699">绕过U17漫画的强制登录</a> 天涯网,热点书库,新浪财经,淘宝宝贝页面的换行和编码修正 新浪微博的清新界面,pcbeta论坛的广告过滤,鼎盛论坛的页面实用性改善,亚马逊的页面跳动问题的修复等</li>
</ol>
<p>CSS选择:<br />
http://userstyles.org/styles/78308/bbs-new-style-phpwind-discuz-tieba-phpbb</p>
<p>JS选择:<br />
http://opera.im/dl/bocnet.7z<br />
https://bitbucket.org/zbinlin/blockpopupwindow/get/tip.zip</p>
<p></p>
<p><strong>常见问题解答:QA<a id="qa"></a></strong>
</p>
</p>
<ol>
<li>Opera 官方中文社区上不去怎么解决?<br />
无法正常访问Opera相关网站的同学请注意,请将下列条目加入 hosts 文件<br />
Windows 下位置为 C:\Windows\System32\drivers\etc/hosts<br />
Linux/Mac 下为 /etc/hosts<br />
59.151.106.253 operachina.com<br />
59.151.106.253 bbs.operachina.com<br />
59.151.106.253 mini.operachina.com<br />
59.151.106.253 portal.operachina.com<br />
59.151.106.253 press.operachina.com<br />
59.151.106.253 redir.operachina.com<br />
59.151.106.253 static.operachina.com<br />
59.151.106.253 wiki.operachina.com<br />
59.151.106.253 www.operachina.com<br />
您也可以使用SimpleU自带的HostsTool来更新Hosts文件。</li>
<li>当您反馈问题时必要的提交出现问题的网址,和相应的重现步骤。否则我解决不了。<br />
当您反馈说为什么不好用啊,有些网站兼容性不好啊诸如此类的问题我都不会解决的。因为没有网址和重现步骤。</li>
<li>安装SimpleU定制版的时候提示无效的安装包。错误代码:45。这是怎么回事啊?<br />
出现这个原因可能是您之前安装过Opera极速版,如果你想继续使用SimpleU定制版可以用7z等软件,右键解压运行。<br />
</li>
<li> 下载Opera SimpleU定制版后,金山毒霸和360杀毒,报毒怎么办?<br />
请本着疑者不用,用者不疑的态度处理此问题。也可以提交到http://www.virscan.org/ 此网站此行检测。optools下有很多第三方脚本和程序,会被误报。<br />
Ps.Nod32不报毒,金山.360什么的就误报,国内的厂商和国外厂商果然是有很大差距啊。</li>
<li>为什么我使用SimpleU后,反馈网站的广告过滤不完全,其他SimpleU用户却无法重现?<br />
SimpleU定制版需要配合Hosts的数据使用的,才可以获得更好的广告过滤效果。将部分去广告数据交由系统处理,既加快了Opera的启动速度,也获得了更好的平台兼容性。</li>
<li>为什么浏览一些网站的时候会遇到Flash基本上都会卡50%的cpu的情况?<br />
opera 10.1 opera11.5正式版 firefox都无这个问题,opera next有问题。<br />
解决方法:opera:config#Performance|SwitchAnimationThrottlingInterval这个选项,不能设置为0,否则出现上面的情况。</li>
<li>为什么我上某一些网站的时候会很卡,而其他的却很快?<br />
首先请确定较慢的网站的网址,查看是否具有规律性;<br />
然后将此网站用IE打开测试是否很卡,比如一些政府网站;<br />
再次确认网络环境,是否是和网络有关的问题,比如一些墙外网站或当前代理速度不理想;<br />
或者排查一下是否为系统防护软件或者广告过滤工具的问题,比如XX卫士的XX规则,一些代理调度软件Proxomitron,privoxy等;<br />
最后,进行过滤排查测试。如果上述仍不能解决问题,请去论坛反馈。 </li>
<li> 为什么我在安装Opera插件的时候会提示不完整?<br />
这是国内网络访问Opera服务器的原因,您可以使用右键--目标另存为来保存插件,然后从本地安装就可以解决此问题。</li>
<li>我保存了笔记,可是忘记了当时的页面地址,怎么找到?<br />
如果在网页上保存笔记后,双点笔记后还能打开保存笔记页面的链接。</li>
<li>页面上有一个Bookmarklets工具,我如何快速保存并应用?<br />
1.您可以右键添加到收藏夹。<br />
2.按住Shift可以将任意按钮拖动到任意位置。可以将 Bookmarklets 拖动到任意位置变成按钮方便使用。<br />
</li>
<li> 为什么用代理进入youtube总是弹出什么证书问题,几乎每打开一个视频都会有此问题?<br />
这是由于您使用了代理软件(比如GAE)导致的,打开Opera的证书管理,在"证书颁发机构"里面导入您的代理软件的证书即可。</li>
<li>为什么我的 Google Reader(谷歌阅读器)不能使用J、K这两个按键上下切换新闻条目了?<br />
这是由于Simpleu版本为了是google图片的功能正常使用,默认将"www.google.com"的站点首选项识别为Firefox了,<br />
请在站点首选项-网络- 中 将"浏览器识别"改为"识别为Opera"即可正常在Reader中使用J、K等快捷键。<br />
</li>
<li> 为什么论坛和贴吧的签名看不到了?<br />
实在想不出签名有什么看头,所以在Custom.css默认就给过滤掉了大部分的签名,如果只是暂时性的查看,可以手动关闭广告过滤。<br />
如果不想让Custom.css过滤签名可以收动手修改Custom.css文件里的"签名过滤"部分。<br />
</li>
<li> 有些视频播放不正常,网页展开不正常怎么办?<br />
部分视频网站不正常可能是由部分js影响导致的网页问题。比如:CleanPlayer.user.js和DBankLinker.js,删除即可解决。</li>
<li>移动联通无法同步OperaLink该如何解决?<br />
可以在hosts添加如下内容:<br />
#OperaLink<br />
91.203.99.46 auth.opera.com<br />
91.203.96.252 link-server.opera.com</li>
<li>每次加载都被问:想要允许本地javascript控制安全页面吗?...改怎样解决?<br />
试试取消打勾opera:config#User JavaScript on HTTPS,或者使用第三方插件修改此项提示。</li>
<li>如何便携化用户配置目录?<br />
关闭opera,在opera程序目录下,找到operaprefs_default.ini,将Multi User改成0,<br />
然后再将原来的profile文件夹里的东西复制到程序目录下的profile里即可。<br />
原来的profile目录的位置可以在opera:about里面查看得到。</li>
<li>如何实现鼠标拖拽一个链接后该链接在后台打开?<br />
勾选这个opera:config#Open Dragged Link In Background<br />
</li>
<li> 部分discuz论坛下载附件扩展名为html该怎么办?<br />
(会导致下载站下载以下扩展名文件时不能弹出下载对话框)<br />
[File Types]<br />
text/html=2,,,,rar,zip,7z,apk,sis,sisx,htm,html,shtml,|</li>
<li>SongTaste的歌曲为什么不能正常播放?<br />
用IE打开SongTaste任一播放链接一次,再用opera,打开就能播放了。</li>
<li>5sing的部分歌曲为什么无法正常播放?<br />
请下载安装微软的<a href="https://www.microsoft.com/getsilverlight/get-started/install/default.aspx?reason=unsupportedbrowser">silverlight插件</a>,重启Opera后即可正常播放。</li>
<li>如何升级Opera?<br />
1.官方版本的Opera可以使用自动更新,用以更新Opera的版本。<br />
2.对于定制版的Opera,升级或回滚到旧版可直接覆盖安装。<br />
对于版本构架变动较大的情况(如Opera10--Opera10.5),不建议沿用旧的配置,最好重新配置用户配置。<br />
因为新版Opera的安装包是7z格式,所以升级还可以用直接解压缩安装包的方法。<br />
用压缩工具打开Opera安装文件,除operaprefs_default.ini和files_list外直接选择解压覆盖。 <br />
这种方式升级可以自行选择覆盖更新哪些内容。</li>
<li>Urlfilter出现uuid了怎么办?<br />
UUID:是Opera官方加入的,如果不喜欢。<br />
可以采用支持正则的文本编辑器进行替换:正则匹配=UUID:\w+$ 替换为空格就行了。</li>
<li>为什么没有64位的Opera SimpleU定制版?<br />
很抱歉,因为我这里没有64位的环境,不会发布64为版本的安装版,您可以下载7z压缩包配置文件,<br />
下载Opera官方64位安装包解压。然后用"Opera SimpleU配置文件.7z"解压后,<br />
覆盖官方的解压版本,即可得到一个64位的Opera SimpleU定制版。</li>
<li>按钮里面涉及到CSS数字勾选的,其中的数字是如何确定的?<br />
Select user CSS file,6 表示使用User CSS文件夹里第6(不过是从0开始数起)个css文件(按文件名升序排序)。<br />
所以这个数字6可能要修改。</li>
<li>为什么我觉得SimpleU定制版占用内存很大?<br />
你把快速拨号全部删除掉,内存占用一下子就掉下来了。</li>
<li>双击Opera图标后,出现Startup error的白底黑字的对话框怎么办?<br />
可能是您的目录权限有问题,重新使用管理员权限进行安装,或者解压/剪切到其他有权限的目录运行试试。<br />
</li>
<li> 我不想使用自动翻页该如何解决?<br />
在页面载入时,按住ctrl键,然后按住鼠标左键,在页面空白处往下拉动鼠标,可以使自动翻页状态暂停!<br />
如果您不想使用此功能可以删除Super_preloader.js Super_preloader.db.js两个js文件解决。<br />
</li>
<li>有些页面图片显示不正常,CSS加载不正产或者出现其他诡异的问题怎么办?<br />
清除持久储存,或者清除所有历史内容试试,或许就能解决了。</li>
<li>为什么我的Opera SimpleU 定制版acid3测试只得了98分?<br />
部分JS可能影响得分情况,请删除OnlinedownNoAds.user.js此文件,即可得满分。</li>
<li>如何取消对cnnic证书的信任?<br />
打开Opera的证书管理,需要手动配置添加此证书的信任排除。<br />
证书文件位于 profile\opcacrt6.dat;profile\opicacrt6.dat,希望您能及时备份。</li>
<li>SimpleU定制版为什么没有绿色版?<br />
SimpleU定制版调用了Opera自带的安装界面。
当然,对于想使用绿色版的朋友可以用7-zip等压缩软件右键直接解压到一个干净的目录即可使用。</li>
<li>设置Opera为默认浏览器后,为什么有些SimpleU定制版的功能无法使用了?<br />
如果您要设置Opera为默认浏览器,请运行Opera目录下的 GreenPath.exe 文件,勾选使用绝对路径,以解决相对路径问题!!!</li>
<li>为什么访问有些网站会出现页面显示错乱?<br />
请尝试关闭CSS里面的微软雅黑的显示,看能否可解决此问题。<br />
或者把最小字体由12改为默认的10试试看。</li>
<li>有些皮肤有标题栏应该如何去除?<br />
打开standard_skin里的skin.ini文件<br />
无标题栏 [Options] 下添加 Transparency = 1 (非 0 既可)<br />
有标题栏 [Options] 下面的 Transparency 值为 0 即可 Transparency = 0<br />
</li>
<li>为什么我的Opera滚动时会出现文字出现模糊重影的问题?<br />
请检查是否开启了IDM下载软件监视Opera的选项。关闭即可解决。若未安装IDM,请尝试将此问题提交给官方予以重视。<br />
</li>
<li>为什么我复制动态图像粘贴到QQ聊天窗口上就是静态的?<br />
解决方法如下:<br />
1. 操作错误。应该打开文件发送动态图像,不是复制粘贴。<br />
2. 除IE内核的浏览器外。其他内核的浏览器均不能复制动态图。即便是复制,也只能复制一帧而已。</li>
<li>为什么会有ieopera和ieonly两个调用IE的JS文件?<br />
运行program\OperaJR.exe ,得到reg文件,双击导入。在浏览很多银行的时候便会自动调用IE打开了。(安装版自动包含并省略了此手动步骤。)</li>
<li>设置 Opera Dragonfly 为离线版或实验版的方法?<br />
如果在安装时将Opera安装目录更改为"?:\Program Files\Opera",则可以默认使用本地化DragonFly。<br />
1.在 https://dragonfly.opera.com/app/stp-1/zips/latest/ (最新稳定版)<br />
或者 https://dragonfly.opera.com/app/stp-1/experimental/zips/latest/ (最新实验版)<br />
下载一个 .zip 压缩包(有各个地区语言版本,随你喜欢选一个)。<br />
最新稳定版 Dragonfly 是针对最新正式版 Opera 使用的,在旧版本 Opera 上使用不保证没有额外的问题。<br />
2.在硬盘里任意位置解压这个压缩包,把里面的 client-*.xml 拖进浏览器 (文件名因各个地区语言版本而异,总之后缀名是xml那个就错不了) ,然后复制这时地址栏的地址,是以 file://localhost 开头的文件路径。<br />
3.在 Opera 中打开 opera:config#DeveloperTools,设置值填入刚才得到的文件路径,保存设置。搞定。如果你已经开着 Dragonfly,关掉并重新打开即可。</li>
<li>实验版 Dragonfly 的设置方法?<br />
在 Opera 中打开 opera:config#DeveloperTools,设置值为 https://dragonfly.opera.com/app/experimental/ ,保存设置。搞定。</li>
<li>为什么我设置的 UserJS 黑白名单无效?<br />
// ==UserScript==<br />
// @include http://xxx.xxx.xxx/*<br />
// @exclude http://zzz.zzz.zzz/*<br />
// ==/UserScript==<br />
其中以 include 标注的即白名单,exclude的为黑名单,可以设置多条。<br />
若黑白名单失效,请保存脚本为 UTF-8 without BOM 格式。</li>
<li>为什么有时候菜单的参数无效呢?<br />
Opera有自己的定义函数:<br />
%u = is active document url | 当前显示文档的url,常用于下载工具传递本页所有链接<br />
%t = is currently selected text | 选定文本。比如常用的"转到URL"的命令为Go to page, "%t"<br />
%s = is the filename of local source cache | 本地缓存文件名 来源于当前显示文档的字符串<br />
%c = is the clipboard content | 剪贴版内容<br />
%i = 显示的搜索结果个数 (search.ini) <br />
%l = is the address of a link you right-click | 右键点击的链接 当前选择的链接,常用于下载工具传递链接</li>
<li>我用的Opera12版本,怎么感觉浏览器变慢了?<br />
Opera12补充优化:<br />
1、开启硬加速:0禁用、1自动、2强制开启<br />
在开启两种渲染器的情况下,如需更换不同的渲染器请把opera:config#Preferred renderer设置:0为OpenGL 、1为DirectX<br />
Enable Hardware Acceleration:opera:config#UserPrefs|EnableHardwareAcceleration<br />
Enable WebGL:opera:config#UserPrefs|EnableWebGL<br />
2、网络缓存Network Buffer Size设置1,有些网页可能会出问题,可以逐步调大点参数。设置为1对网页加快载入效果较为明显。<br />
注意,如果存在两个版本的FLASH,把32或64版本其中之一关掉。<br />
opera:config#Performance|NetworkBufferSize设置为1,设置12可能是个比较合适的参数。<br />
3、动画性能优化opera:config#Performance|Animation,把他们设置为0,这个设置有些时候会导致加载Animation更慢,大家酌情处理,但设置为0时,加载缓存会降低延迟。<br />
opera:config#Performance|LagThresholdForAnimationThrottling<br />
opera:config#Performance|SwitchAnimationThrottlingInterval</li>
<li>部分版本备注:<br />
Opera 从 11.60版开始,对CSS的选择器区分大小写。<br />
11.00以下,display:none元素不下载,9.64表现尤其好...<br />
Opera 11.10以后新增几个延迟选项,微调以下选项可以提升页面响应速度(要最快就设置全为0)<br />
1. opera:config#Styled First Update Timeout<br />
2. opera:config#First Update Delay<br />
3. opera:config#Update Delay<br />
4. opera:config#Wait For Style<br />
5. opera:config#Reflow Delay Load<br />
6. opera:config#Reflow Delay Script</li>
</ol>
<p><strong>插件的选择:program\plugins<a id="plugins"></a></strong></p>
<p align="right"><a href="#top">ˆTop</a></p>
<ol>
<li><a href="http://bbs.operachina.com/viewtopic.php?f=54&t=7730">ViewinIE插件</a> <a href="http://www.microsoft.com/getsilverlight/get-started/install/default.aspx?reason=unsupportedbrowser"></a> <a href="http://t.live.cntv.cn/ieocx/CCTV_FF_Plug-in.xpi">CNTV播放插件</a> <a href="http://115.com/static/plug/install_help/install_step2.html">115上传控件下载</a></li>
<li><a href="https://mybank1.icbc.com.cn/icbc/newperbank/ICBCFFExtensions.xpi">ICBC工商银行插件</a> <a href="https://online.unionpay.com/portal/upe/UPEditorFF.exe">在线银联插件</a> <a href="https://download.alipay.com/aliedit/npaliedit/1302/npaliedit.exe">支付宝支付插件</a> <a href="https://www.tenpay.com/download/tenpaycert.exe">QQ登录支付插件</a> <a href="https://cmpay.10086.cn/ocx/cmpayEditFF.exe">中国移动支付安全控件</a></li>
<li><a href="http://www.adobe.com/cn/products/flashplayer/distribution3.html">Flash插件下载</a>(<a href="http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_10_plugin.exe">10.3版</a> <a href="http://download.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_11_plugin.exe">11版</a>) <a href="http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager09.html">Flash p2p上传控制</a></li>
<li><a href="https://download.alipay.com/sec/edit/aliedit.exe">支付宝安全控件</a> <a href="https://download.alipay.com/ukey/cf/alicert.exe">支付宝数字证书控件</a> <a href="http://dl_dir.qq.com/music/clntupate/QzoneMusicInstall.exe">QQ空间音乐播放插件</a> <a href="http://www.microsoft.com/getsilverlight/get-started/install/default.aspx?reason=unsupportedbrowser">SilverLight插件</a></li>
</ol>
<p>(*Flash默认集成了10.3版。4.包含的插件默认没有集成,可以自己下载安装。)
</p>
<p><strong>RSS订阅的完善:defaults/feedreaders.ini<a id="rss"></a></strong></p>
<p align="right"><a href="#top">ˆTop</a></p>
<p>[豆瓣]<br />
ID=10<br />
URL=http://9.douban.com/reader/subscribe?url=%s</p>
<p>[抓虾]<br />
ID=11<br />
URL=http://www.zhuaxia.com/add_channel.php?url=%s</p>
<p>[鲜果]<br />
ID=12<br />
URL=http://www.xianguo.com/subscribe.php?url=%s</p>
<p>[有道]<br />
ID=13<br />
URL=http://reader.yodao.com/#url=%s</p>
<p>[哪吒]<br />
ID=14<br />
URL=http://iNeZha.com/add?url=%s</p>
<p>[QQ 邮箱]<br />
ID=15<br />
URL=http://mail.qq.com/cgi-bin/feed?u=%s<br />
</p>
<p><strong>超级快进的设置:ui/fastforward.ini<a id="fastforward"></a></strong></p>
<p align="right"><a href="#top">ˆTop</a></p>
<p>;Chinese (traditional and simplified)<br />
前进<br />
继续<br />
翻页<br />
下页<br />
下頁<br />
下篇<br />
后页<br />
后页><br />
往后>><br />
下一頁<br />
下一页=101<br />
下一页><br />
下一页>><br />
下一个<br />
下一张<br />
下一张 ><br />
下一幅<br />
下一幅 ><br />
下一章<br />
下一节<br />
下一節<br />
下一篇<br />
后一页=90<br />
下一步<br />
翻下页<br />
翻下頁<br />
看下一页<br />
下一页(快捷键→)<br />
"[下頁]"<br />
"[下页]"<br />
"[继续]"<br />
"[下一頁]"<br />
"[下一页]"<br />
"[翻下頁]"<br />
"[翻下页]"<br />
---------------<br />
;douban.com<br />
更多小组讨论 = 102<br />
;Wordpress<br />
"« 上一页" = 110<br />
"[繼續]"<br />
"« 上一頁" = 200<br />
下一個<br />
下一张 = 102<br />
下一張<br />
下一頁><br />
下一頁>><br />
下一頁(快捷鍵→)<br />
下一页<br />
前進<br />
后页> = 102<br />
往後>><br />
後一頁 = 90<br />
後頁<br />
後頁><br />
更多 = 102<br />
看下一頁<br />
繼續<br />
翻頁</p>
<p> <!-- end .content --><a href="#top">ˆTop</a></p>
<p><strong>皮肤的修改:skin\standard_skin.zip\skin.ini<a id="skin"></a></strong></p>
<p align="right"><a href="#top">ˆTop</a></p>
<p><a href="http://www.avast.com/zh-cn/free-antivirus-download">Avast</a> <a href="http://personalfirewall.comodo.com/free-download.html">Comodo</a> <a href="http://windows.microsoft.com/zh-CN/windows/security-essentials-download">Mse</a> <a href="http://www.huorong.cn">火绒</a> <a href="http://pinyin.engkoo.com/">英库拼音</a> <a href="http://www.unispim.com/">华宇拼音</a> <a href="http://www.google.com/intl/zh-CN/ime/pinyin/">谷歌拼音</a> <a href="https://www.virtualbox.org/wiki/Downloads">virtualbox</a> <a href="https://www.torproject.org/download/download.html">Tor</a> <a href="http://www.disktool.cn/download.html">傲梅分区助手</a> <a href="http://rufus.akeo.ie/">Rufus</a> <a href="http://idown.org/">idown</a> <a href="http://www.codecguide.com/download_k-lite_codec_pack_mega.htm">k-lite_codec_pack_mega</a> <a href="http://www.skype.com/intl/zh-Hans/business/download/downloading/">Skype</a> <a href="http://www.freedownloadmanager.org/download.htm">FDM</a> <a href="http://www.shuax.com/go/CWUB3_Portable/">cwub3</a> <a href="http://launcher.nirsoft.net/download.html">nirsoft</a> <a href="http://emulefans.com/">emule</a>
</p>
<h2>Opera 11 文件目录详解 <a href="http://bbs.operachina.com/memberlist.php?mode=viewprofile&u=24251">Sigillo</a></h2>
<dl id="profile556619">
<dd> </dd>
</dl>
<div>
<div>
<div>
<ul>
<li>本文在亡灵法师、Magickey 的 <a href="http://bbs.operachina.com/viewtopic.php?f=54&t=1701" target="_blank">Opera 的安装、目录和文件详解</a> 基础上进一步完善,适用 Opera 11 final。</li>
<li>本文仅供大家需要了解 Opera 各种文件位置及用途的时候备查,因篇幅较长并不作为新手必读。</li>
<li>本文可能会有不少错漏之处,欢迎留言指正。</li>
</ul>
</div>
<br />
<br />
<div>Opera 安装目录(默认为 X:\Program Files\Opera )
<hr />
<br />
<ul>
<li>根目录</li>
</ul>
<table>
<tbody>
<tr>
<td><div>文件</div></td>
<td><div>作用</div></td>
</tr>
<tr>
<td>c3nform.vxml</td>
<td></td>
</tr>
<tr>
<td>encoding.bin</td>
<td></td>
</tr>
<tr>
<td>html40_entities.dtd</td>
<td>用于修复 MathML 无效的问题</td>
</tr>
<tr>
<td>license.rtf</td>
<td>Opera 软件协议文件</td>
</tr>
<tr>
<td>lngcode.txt</td>
<td>默认的语言文件简写与全称之间的对应</td>
</tr>
<tr>
<td>mathml.dtd</td>
<td></td>
</tr>
<tr>
<td>operaprefs_default.ini</td>
<td>定义语言文件路径及用户模式</td>
</tr>
<tr>
<td>opera.exe</td>
<td>Opera 主程序</td>
</tr>
<tr>
<td>opera.dll</td>
<td>Opera 主运行库</td>
</tr>