Google Chrome 7 dev released

Page 2 of 3 FirstFirst 123 LastLast

  1. Posts : 3,639
    Windows 7 Ultimate, OS X 10.7, Ubuntu 11.04
       #11

    MilesAhead said:
    DarkNovaGamer said:
    ...
    Glad to hear that. Sometimes it will kill extensions but it could be 'log-in' based ones like GMail ones. Let me know if you have anymore questions regarding Google Chrome/Chromium.
    Thanks. Funny how it goes. I hated the idea of Speed-dial when it came out in FF. Had to find out how to kill it right away. Now using it in Chrome I got hooked. I finally put it on both my FF browsers. Better home page than about:blank :)

    edit: seems snappy. Guess it should. Just running Speed-dial it has 8 processes going. :)
    Try unpinning any 'Chromium' pins you made on your taskbar and start menu.

    Then go to any shortcuts for Chromium you've made (desktop, start menu, etc) and add the following to the end of it (Put a space between .exe and the following):

    --enable-gpu-plugin --enable-gpu-rendering --enable-accelerated-2d-canvas --enable-accelerated-compositing --enable-video-layering --enable-webgl --enable-fastback --apps-panel --web-apps
      My Computer


  2. Posts : 5,092
    Windows 7 32 bit
       #12

    --enable-fastback seems beneficial. But the rest of it kills off my Speed dial on new tab. Anyway, I don't think my GPU is ballsy enough to benefit from acceleration. At least not in browsers. Maybe for software video players.

    edit: thanks for the options. I'll try various combos. Right now these seem to peacefully coexist: -enable-gpu-plugin --enable-gpu-rendering --enable-fastback
      My Computer


  3. Posts : 3,639
    Windows 7 Ultimate, OS X 10.7, Ubuntu 11.04
       #13

    MilesAhead said:
    --enable-fastback seems beneficial. But the rest of it kills off my Speed dial on new tab. Anyway, I don't think my GPU is ballsy enough to benefit from acceleration. At least not in browsers. Maybe for software video players.

    edit: thanks for the options. I'll try various combos. Right now these seem to peacefully coexist: -enable-gpu-plugin --enable-gpu-rendering --enable-fastback
    Kills it for me as well. Though I have noticed a major boost in things since enabling the flags. Hopefully the new tab page will be fixed in the next few builds
      My Computer


  4. Posts : 52
    Windows 7 U/64
       #14

    Trying it out now.
      My Computer


  5. Posts : 2,292
    Windows 7 Home Premium x64
       #15

    Any useful feedback yet?

    I found it annoying that the current GC stable version builds up on RAM usage when the browser is open for, like, an hour or more. In addition to that, when I click on a bookmark/type in an address and hit enter etc. and then immediately resize the browser window, the page which is loading does not adopt to the new window size, instead it just loads as if I haven't resized the window at all.

    Extensive usage of Flash produced choppiness and stuttering; its not as bad as in Firefox, where it completely freezes for a fraction of a second, but it is more constant (the best example for this? Playing JamLegend)
      My Computer


  6. Posts : 5,092
    Windows 7 32 bit
       #16

    DarkNovaGamer said:
    MilesAhead said:
    --enable-fastback seems beneficial. But the rest of it kills off my Speed dial on new tab. Anyway, I don't think my GPU is ballsy enough to benefit from acceleration. At least not in browsers. Maybe for software video players.

    edit: thanks for the options. I'll try various combos. Right now these seem to peacefully coexist: -enable-gpu-plugin --enable-gpu-rendering --enable-fastback
    Kills it for me as well. Though I have noticed a major boost in things since enabling the flags. Hopefully the new tab page will be fixed in the next few builds
    btw- do you have a source for all the command line switches? Maybe with capsule descriptions?
      My Computer


  7. Posts : 3,639
    Windows 7 Ultimate, OS X 10.7, Ubuntu 11.04
       #17

    MilesAhead said:
    DarkNovaGamer said:
    MilesAhead said:
    --enable-fastback seems beneficial. But the rest of it kills off my Speed dial on new tab. Anyway, I don't think my GPU is ballsy enough to benefit from acceleration. At least not in browsers. Maybe for software video players.

    edit: thanks for the options. I'll try various combos. Right now these seem to peacefully coexist: -enable-gpu-plugin --enable-gpu-rendering --enable-fastback
    Kills it for me as well. Though I have noticed a major boost in things since enabling the flags. Hopefully the new tab page will be fixed in the next few builds
    btw- do you have a source for all the command line switches? Maybe with capsule descriptions?
    I wish, I generally find these things by going through Neowin and reading what people say regarding Chrome/Chromium.
      My Computer


  8. Posts : 5,092
    Windows 7 32 bit
       #18

    Yeah, there was a list on one of the Chrome forums, but it's ancient. Anyway, the combination I'm running seems pretty snappy. :)
      My Computer


  9. Posts : 5,092
    Windows 7 32 bit
       #19

    DarkNovaGamer said:
    ...

    --enable-gpu-plugin --enable-gpu-rendering --enable-accelerated-2d-canvas --enable-accelerated-compositing --enable-video-layering --enable-webgl --enable-fastback --apps-panel --web-apps
    One good turn deserves another. I don't know if you do AutoHotKey but I hate that middle mouse click on a link opens a new tab in the background. So I did this ahk. When you middle mouse click on a link in Chrome, it sends Control Shift Left Click to open it in a new tab in the foreground:

    Code:
    SendMode Input
    
    #IfWinActive, ahk_class Chrome_WidgetWin_0
    MButton::
      Send, ^+{LButton}
    Return
    The line #IfWinActive, ahk_class Chrome_WidgetWin_0 restricts it so that the hotkey is only active when Chrome is the active window. Avoids interfering with other uses of Middle Click.

    It will also work with Speed-dial. The dial you middle click will open in a new foreground tab instead of replacing the Speed dial page.
      My Computer


  10. Posts : 3,639
    Windows 7 Ultimate, OS X 10.7, Ubuntu 11.04
       #20

    MilesAhead said:
    DarkNovaGamer said:
    ...

    --enable-gpu-plugin --enable-gpu-rendering --enable-accelerated-2d-canvas --enable-accelerated-compositing --enable-video-layering --enable-webgl --enable-fastback --apps-panel --web-apps
    One good turn deserves another. I don't know if you do AutoHotKey but I hate that middle mouse click on a link opens a new tab in the background. So I did this ahk. When you middle mouse click on a link in Chrome, it sends Control Shift Left Click to open it in a new tab in the foreground:

    Code:
    SendMode Input
    
    #IfWinActive, ahk_class Chrome_WidgetWin_0
    MButton::
      Send, ^+{LButton}
    Return
    The line #IfWinActive, ahk_class Chrome_WidgetWin_0 restricts it so that the hotkey is only active when Chrome is the active window. Avoids interfering with other uses of Middle Click.

    It will also work with Speed-dial. The dial you middle click will open in a new foreground tab instead of replacing the Speed dial page.
    Thank you for that. That looks helpful. :)
      My Computer


 
Page 2 of 3 FirstFirst 123 LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 17:21.
Find Us