Skip to content

Instantly share code, notes, and snippets.

View borisdiakur's full-sized avatar

Boris Diakur borisdiakur

View GitHub Profile
@borisdiakur
borisdiakur / case-sensitive-seach.js
Last active November 7, 2024 12:53
Bookmarklet for case-sensitive search in Google Chrome (and other browsers which do not ship this feature). You can find install instruction below the code.
(function () {
'use strict';
var body = document.body,
html = document.documentElement;
var docHeight = Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight);
var findingColor = 'limegreen';