Surf in fullscreen

linux 下似乎有所不同。

Opera’s keyboard shortcuts come really handy when you are using fullscreen mode (F11). You can hide/show the address bar (Ctrl F8), panels (F4) and scroll bar (Ctrl F7).

Fastforward (Shift Z) and Rewind (Shift X) are a blessing when you are reading forums in fullscreen. If you accidentally close your only active window (when you thought you closed a page that had opened in new window) just press Ctrl Z to recover it.

BTW:opera 8 在我的 debian scim 输入法有问题。选自的时候,用空格或者回车都不行,而需要鼠标点击一下,英文没问题,郁闷。而且还会出现无法输入任何字符(包括英文)的情况。(必须这段文字,我就敲的很痛苦…)

Toggle Flash On/Off using User CSS

To allow Flash to be toggled on/off, you can use a user CSS file to convert flash embeds into text entries. See OperaUserCSS for how to install this, the contents of the CSS file would be:

embed[type="application/x-shockwave-flash"] {content:”Flash”; outline: 1px dotted gray; color: #DD0000; background: black}

Improving the Default Wrapping for Text Files

Arve has a nice CSS addition to allow text files to wrap if they do not have explicit line feeds. He suggests adding the following to browser.css (Opera V7.5+ only):

@media projection {

body > pre:first-child {

font-weight: bold;

font-size: 1.3em;

padding: 1em;

margin-left: auto;

margin-right: auto;

border: 2px solid #ccc;

}

}

body > pre:first-child {

white-space: -o-pre-wrap;

max-width: 76ex;

}

This makes it apply to ALL pages (even HTML pages if pre is the first child of body - which is however very rare). If you want to be able to selectively toggle it, then simply make it a user style-sheet instead; see OperaUserCSS for details on how.

Save images quickly

You can save any image to disc by ctrl+clicking it.

Create a desktop URL shortcut

If you want to create a desktop shortcut to a website, this is possible. Resize the Opera window so (a part of) your desktop is visible, and drag the icon left of the URL in the addressbar to your desktop.

A URL shortcut pointing to the page will be created.

You can also manually create a URL shortcut anywhere you like: just create a normal shortcut in Windows, but instead of putting in a file path, paste the URL.

Fix word breaking done with

Author: DarkElf

The tag is not supported by Opera, but is used by some people and page management systems to break up long strings. You can make this tag work for you by adding the following to your UserStyleSheet:

/* Fix : this enters a soft hyphen after any occurance

of this tag. */

wbr:after {

content: “0AD”;

}

A soft hyphen is normally invisible, but will show if the string it occurs in is too wide: then it is identical in appearance to the normal hyphen (-).

Stop

Author: DarkElf

You can prevent blinking done with the tag by adding the following to your UserStyleSheet:

/* Prevent blinking */

blink, .blink {

text-decoration : inherit !important;

}

Also, here’s a JavaScript bookmarklet to accomplish nearly the same thing:

javascript:var b=document.getElementsByTagName(”blink”);for(var j=0;j

Stop

Authors: TheElektrans

Opera 7.20 added support for animated (scrolling) text done with . You can disable this by using what is probably a bug in Opera, by adding the following to your UserStyleSheet:

/* Disable marquee: this exploits what is probably a bug */

marquee {

display : table-row !important;

font-size : 1em !important;

}

Also, here’s a JavaScript bookmarklet to accomplish nearly the same thing:

javascript:var m=document.getElementsByTagName(”marquee”);for(var j=0;j%lt;m.length;j++) m[j].style.display=”table-row”;if (m.length) return false;

More stuff at:

http://nontroppo.org/wiki/OperaTips

Can I have a right-click “Delete entire cache” menu item?

Yes. Find and open menu.ini and add

Item, 54493 = Delete private data

to the [Browser File Menu] section right under

Submenu, 162000, Quick Preferences Menu = Show popup menu, “Quick Preferences Menu”

Item, 50394 = Show preferences, -1

[Edit on 2005-5-28 12:19:31 By guoshuang]


Leave a reply