Showing posts with label Chrome. Show all posts
Showing posts with label Chrome. Show all posts

Friday, 5 January 2018

How to fix blurry images in Google Chrome

Problem
When browsing sites with thumbnail images, those images appear blurred in Chrome, but not in other browsers such as Internet Explorer
Resolution
Uncheck the use hardware acceleration option in chrome settings.
  1. Open Chrome
  2. Navigate to chrome://settings
  3. Scroll to the bottom, and expand the Advanced options
  4. Near the bottom, uncheck the Use hardware acceleration when available option, and then click the RELAUNCH link that appears after you change this option.
image

Problem 2
When browsing google maps, image and text appears blurred in Chrome, but not in other browsers such as Internet Explorer
Resolution
  1. Open Chrome
  2. Navigate to http://maps.google.co.uk/maps 
  3. Press F12 to open Developer tools 
  4. Click on the Application Tab, and then select Clear Storage
  5. Check Local and session storage,  Cookies, Cache Storage and Application Cache
  6. Click Clear site data
  7. Relaunch Google Chrome

Thursday, 9 October 2014

How to remove history from chrome for a single site

1. Open the chrome://history/ page in Google chrome, and search for the site that you wish to delete history from.

image

2. Inspect the chrome://history/ page in F12 dev tools, then change the frame selected to target this history frame

image

3. Run the following javascript lines from the Console window (Esc)...

var checkBoxes =document.getElementsByClassName('entry-box');

for (i = 0; i< s.length; i++) {checkBoxes[i].childNodes[0].checked = true;}

document.getElementById('remove-selected').disabled = false;

4. Now just click the Remove selected Items button that should be enabled.

image

Alternatively as my colleague Joseph pointed out, you can just use this browser extension if you like,...

https://chrome.google.com/webstore/detail/better-history/obciceimmggglbmelaidpjlmodcebijb?hl=en

Search your history, then this will let you delete the search results.

How to find the last interactive logons in Windows using PowerShell

Use the following powershell script to find the last users to login to a box since a given date, in this case the 21st April 2022 at 12pm un...