Tag: Google Chrome

  • How to remove the Google Chrome Reading List

    Reading List is a new experimental feature added to google chrome browser version 89. It allows you to quickly save web pages into a list for reading later. Many of us keep too many browser tabs open because we need to read them and don’t have time to read it now, in such cases, it is better just add the web pages to your reading list and close the tab.

    Google Chrome Reading list

    How to add a web page to Reading List

    To add a page to Google Chrome Reading list, you can right click on the browser tab title, then select “Add tab to reading list” option

    Add tab to reading list in google chrome browser

    Other way is to click on the star icon (Bookmark this tab) right side of the address bar. Previously clicking on this star bring the bookmark screen. Now it ask you to select if you need to bookmark the page or add to reading list.

    Chrome Bookmark reading list

    Once a page is added to Reading list, it can be easily accessed from the Reading List menu on right side of bookmark bar. Once you read a page, you can remove it from the reading list.

    Disable Reading List

    If you don’t you the reading list feature, you can easily remove it. For this, take a new browser tab, in the address bar, type

    chrome://flags/#read-later
    

    On this screen, you can set reading list feature to disabled from the dropdown menu. Once this is done, on bottom of the browser, you get option to “Relanuch” the browser. Once you restart the browser, Reading List feature will be disabled.

    Chrome Disable Reading List

    See Google Chrome

  • Install Google Chrome on CentOS 7 64 bit

    To install Google Chrome on CentOS 7 (Chrome won’t work on CentOS 6 as it is using older version of libraries required for Chrome).

    First create repo file

    vi /etc/yum.repos.d/google-chrome.repo
    

    Add following content

    [google-chrome]
    name=google-chrome
    baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
    enabled=1
    gpgcheck=1
    gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
    

    Now you can install google chrome with command

    yum -y install google-chrome-stable
    

    See CentOS