Google Chrome - Tips
18 Jan 2017- (how to) delete autosuggested URL
- web inspector
- (how to) disable material design bookmarks
- (how to) return old-style tabs
- (how to) copy percent-encoded URL
(how to) delete autosuggested URL
<S-Del>
web inspector
(how to) find elements in Console
- by css:
$('div.phone')
- by xpath:
$x("//div[contains(@class,'phone')")
to be able to reveal found elements in Elements Panel it’s necessary to select particular element from collection:
$('div.phone')[0]
(how to) disable material design bookmarks
chrome://flags/#enable-md-bookmarks →
Disabled
UPDATE
this flag is no longer available in Google Chrome 69 (or maybe even 68).
(how to) return old-style tabs
chrome://flags/#top-chrome-md -> Normal
UPDATE
this flag is no longer available in Google Chrome 71.
(how to) copy percent-encoded URL
add space to the end of URL and copy.