Currently, many browsers that support false positives, such as sogou and Windows 3, do not support Google Toolbar. This makes it inconvenient for people who are familiar with Google bookmarks. I thought of a compromise method.
1. access bookmarks and use the igoogle bookmarks Portlet
2. Add bookmarks
Use the following method to extend the email function of IE:
Regedit open registry editor and find
HKEY_CURRENT_USER/software/Microsoft/Internet Explorer/menuext
Right-click to create a new item "add to Google bookmarks" and add two sub-items, as shown below:
C:/Windows/addtogoogle.htm indicates the page to be executed, which contains the JS script.
0x00000001 indicates that the item is displayed in the menu under any circumstances,
Next, create addtogoogle.htm in C:/Windows. The content is as follows:
<Script language = "JavaScript"> </P> <p> function oncontextmenu () <br/> {</P> <p> var parentwin = external. menuarguments; <br/> var Doc = parentwin.doc ument; </P> <p> parentwin. open ('HTTP: // www.google.com/bookmarks/mark? OP = add & bkmk = '+ encodeuricomponent (Doc. URL) + '& Title =' + encodeuricomponent (Doc. title); </P> <p >}</P> <p> oncontextmenu (); </P> <p> <SCRIPT>
This makes it easy to use Google bookmarks!