Skip to main content

Chrome (hidden) useful settings

1. Override software rendering list 
Overrides the built-in software rendering list and enables GPU-acceleration on unsupported system configurations. #ignore-gpu-blacklist

When is this needed?
When Chrome is not using hardware acceleration

To verify if Chrome is using hardware acceleration type in chrome://gpu/. If it says 

Canvas: Software only, hardware acceleration unavailable

Then is clear that Chrome is not using hardware acceleration. To enable hardware acceleration 

Search for "hardware" and tick the checkbox for "Use hardware acceleration..." in chrome://settings
Enable "Override software rendering list" in chrome://flags/


Relaunch Chrome. type in chrome://gpu/. If the message has changed to

Canvas: Hardware accelerated

Then Chrome is using hardware acceleration.

2. Fast tab/window close
Enables fast tab/window closing - runs a tab's onunload js handler independently of the GUI.

3. Smooth Scrolling Windows, Linux, Chrome OS, Android
Animate smoothly when scrolling page content. #smooth-scrolling

4. GPU rasterization
Use GPU to rasterize web content. Requires impl-side painting. #enable-gpu-rasterization
5. GPU rasterization MSAA sample count.
Specify the number of MSAA samples for GPU rasterization. #gpu-rasterization-msaa-sample-count = 2

6. Material Design in the rest of the browser's native UI 

7. LCD text antialiasing 

8. Simple Cache for HTTP 

9. TCP Fast Open Linux, Chrome OS, Android
Enable the option to send extra authentication information in the initial SYN packet for a previously connected client, allowing faster data send start. #enable-tcp-fast-open

10. Zero-copy rasterizer
Raster threads write directly to GPU memory associated with tiles. #enable-zero-copy
11. Enable native notifications. Mac, Linux
Enable support for using the native notification toasts and notification center on platforms where these are available. #enable-native-notifications - The Chrome notifications goes through the OS 
12. Number of raster threads
Specify the number of raster threads. #num-raster-threads = 4
13. Tab audio muting UI control 
When enabled, the audio indicators in the tab strip double as tab audio mute controls. This also adds commands in the tab context menu for quickly muting multiple selected tabs. #enable-tab-audio-muting - This settings is amazing. It lets me mute a tab with embedded videos so that I can continue reading without wasting time looking for the exact location of the sound source.

14. Reduce default 'referer' header granularity.
If a page hasn't set an explicit referrer policy, setting this flag will reduce the amount of information in the 'referer' header for cross-origin requests. #reduced-referrer-granularity

15. Speculative Prefetch
"Speculative Prefetch" fetches likely resources early to improve load times, based on a local database (see chrome://predictors). "Learning" means that only the database construction is enabled, "Prefetching" that learning and prefetching are enabled. #enable-resource-prefetch

16. Off-main-thread fetch for Web Workers
If enabled, the resource fetches from worker threads will not be blocked by the busy main thread. #enable-off-main-thread-fetch

17. Enable browser side navigation
Use browser scrollbars instead of the scrollbars from the window manager of the OS 

18. chrome://net-internals/#events
Net-internals is a browser's network diagnosis center. It includes information and tools to help you see the events has been captured, solve recurring problems, and solve network problems. If you encounter a DNS error page, you may have visited this page to refresh the cache.

19. chrome://components/
This command displays all components used in Chrome browser. Here we can see the version of commonly used Flash components and check whether there are updates.

20. chrome://about/
If the user is still confused about how to find these commands, enter the "chrome://about" command, which will include all the commands supported by the Chrome browser, divided into the Chrome URLs and the commands for Debug purposes.

21. chrome://media-engagement/
This page will show the frequency of visit to the video streaming sites. It also logs visits to sites you do not want to be logged. So that's some motivation to stay off the sites with amorous content.


Comments

Popular posts from this blog

Fastest way to send multiple drafts from gmail

People claim that the fastest way to send multiple email drafts is to use Gmail IMAP with email client like Outlook or Evolution or Thunderbird. But I have found this is not true. Because Thunderbird and Evolution etc. email clients treats the drafts as emails still to be edited. So it is not just simple select all and hit send. Each email draft has to be opened and sent separately. That is a lot of clicks and mouse movements, wasting precious time and energy. I have a better solution which involves minimum keystrokes and mouse usage. Efficiency booster technique for sending emails. If someone is feeling adventurous and want to try it from the Gmail interface itself, here's how to do it in the fastest possible manner. It involves using the mouse once. Select the first draft. Gmail would open a new email box and put the cursor inside the box to write. Press TAB once to go the Send button. Press ENTER to send. Now Gmail sends it and the box is gone but the highlight goes to the last

LYRICS OF CHANDRABINDOO

___________________________________________________________________ SWEET HEART FROM AAR JAANI NAA(T-SERIES) -- SWEETHEART -- Pratham college-er din ta Aajo thik e mone poRey scene ta Dada didi haath dhorey siNRi tei bose poRey Aamar chokh ta ghorey bon bon bon bon Sweetheart, I am seating alone Sweetheart, for me there is none DhoNk gile chole gelo pratham maas Meye dekhlei feli deergho-shwash DhoNk gile chole gelo pratham maas Meye dekhlei othe nabhishwash Meyera bheeshan smart poRey chhoto mini-skirt Aamar e je sheet korey kon kon kon kon Sweetheart, I am seating alone Sweetheart, for me there is none Taarporey kete gelo maas chaar Fuse holo je kato future Bandhura purse khule eke oke taake tole Aamar pran ta korey chon mon chon mon Sweetheart, I am seating alone Sweetheart, for me there is none Ekdin lawn theke beriye Ek tanayaar dike taakiye Hawt korey ki je holo magaj ta ghurey gelo Taar kaaner saamne kori ghyan ghyan ghyan ghyan Sweetheart, I am seating alone Sweethea

Changing the font size of section headings in LaTex

You have several ways to do so: 1.- A direct redefinition of \section: \makeatletter \renewcommand\section{\@startsection{section}{1}{\z@}%                                   {-3.5ex \@plus -1ex \@minus -.2ex}%                                   {2.3ex \@plus.2ex}%                                   {\normalfont\large\bfseries}} \makeatother 2.- By means of the titlesec package: \usepackage{titlesec} \titleformat{\section}{\large\bfseries}{\thesection}{1em}{} 3.- By means of the sectsty package: \usepackage{sectsty} \sectionfont{\large} source : http://www.latex-community.org/forum/viewtopic.php?f=4&t=3245   Now, I would explain the titlesec package a bit more (because it seems easier to me and with more options) : To change the section fonts with this package put the following lines in the preamble - \usepackage{titlesec} \titleformat{\ section }{\ large \ bfseries }{\thesection}{1em}{} Options available are- a> Font size - \normals