Case sensitive searches in Google Chrome
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
Is there a way to perform case sensitive on page searches in Google Chrome?
Say I'm searching for "Tree" and I want to exclude all variants such as "tree" or "TREE" which don't match the case I'm looking for. Is this possible?
google-chrome
add a comment |
Is there a way to perform case sensitive on page searches in Google Chrome?
Say I'm searching for "Tree" and I want to exclude all variants such as "tree" or "TREE" which don't match the case I'm looking for. Is this possible?
google-chrome
1
The good old days of XP...
– Luke Fisk-Lennon
Sep 22 '18 at 0:00
I noticed this was asked 8yr ago. Does anyone know if this is possible yet?
– Tim
Sep 28 '18 at 2:30
add a comment |
Is there a way to perform case sensitive on page searches in Google Chrome?
Say I'm searching for "Tree" and I want to exclude all variants such as "tree" or "TREE" which don't match the case I'm looking for. Is this possible?
google-chrome
Is there a way to perform case sensitive on page searches in Google Chrome?
Say I'm searching for "Tree" and I want to exclude all variants such as "tree" or "TREE" which don't match the case I'm looking for. Is this possible?
google-chrome
google-chrome
edited Jun 19 '14 at 11:29
Der Hochstapler
68.4k50230287
68.4k50230287
asked Sep 24 '10 at 19:43
LazerLazer
6,4663695130
6,4663695130
1
The good old days of XP...
– Luke Fisk-Lennon
Sep 22 '18 at 0:00
I noticed this was asked 8yr ago. Does anyone know if this is possible yet?
– Tim
Sep 28 '18 at 2:30
add a comment |
1
The good old days of XP...
– Luke Fisk-Lennon
Sep 22 '18 at 0:00
I noticed this was asked 8yr ago. Does anyone know if this is possible yet?
– Tim
Sep 28 '18 at 2:30
1
1
The good old days of XP...
– Luke Fisk-Lennon
Sep 22 '18 at 0:00
The good old days of XP...
– Luke Fisk-Lennon
Sep 22 '18 at 0:00
I noticed this was asked 8yr ago. Does anyone know if this is possible yet?
– Tim
Sep 28 '18 at 2:30
I noticed this was asked 8yr ago. Does anyone know if this is possible yet?
– Tim
Sep 28 '18 at 2:30
add a comment |
5 Answers
5
active
oldest
votes
No; as of 6th April 2011, this feature request with Chromium (the open source code base of Chrome) has been rejected.
21
This is a shame, really.
– Revolutionair
Mar 5 '13 at 12:12
3
Use FF Luke.Use FF Luke.Use FF Luke.
– gaRex
Feb 20 '15 at 12:44
3
Chrome is the new IE.
– faintsignal
Dec 12 '16 at 19:18
not without an extension/plugin/bookmarklet
– Trevor Boyd Smith
Sep 4 '18 at 15:05
add a comment |
There is also a nice plugin for that: QuickFind
This add-on looked promising, but doesn't work for me. The shortcut doesn't open the QuickFind text input for me. I'm on Version 69.0.3497.100 (32bit)
– Benny Bottema
Nov 5 '18 at 11:38
add a comment |
Developer tools in Chrome supports case sensitive search.
Open Developer Tools for the current tab (Ctrl+Shift+I – that's capital "i"),
then open Search across all sources (Ctrl+Shift+F), and choose Match Case.
If case sensitivity isn't sufficient, this also supports regular expressions.
add a comment |
Here's a function which prompts for a word and performs a case-sensitive search:
var searches = searches || 0;
(function () {
var count = 0,
text;
text = prompt('Search:', '');
if (text == null || text.length === 0) return;
function searchWithinNode(node, re) {
var pos, skip, acronym, middlebit, endbit, middleclone;
skip = 0;
if (node.nodeType === 3) {
pos = node.data.search(re);
if (pos >= 0) {
acronym = document.createElement('ACRONYM');
acronym.title = 'Search ' + (searches + 1) + ': ' + re.toString();
acronym.style.backgroundColor = backColor;
acronym.style.borderTop = '1px solid ' + borderColor;
acronym.style.borderBottom = '1px solid ' + borderColor;
acronym.style.fontWeight = 'bold';
acronym.style.color = borderColor;
middlebit = node.splitText(pos);
endbit = middlebit.splitText(RegExp.lastMatch.length);
middleclone = middlebit.cloneNode(true);
acronym.appendChild(middleclone);
middlebit.parentNode.replaceChild(acronym, middlebit);
count++;
skip = 1;
}
} else if (node.nodeType == 1 && node.childNodes && node.tagName.toUpperCase() != 'SCRIPT' && node.tagName.toUpperCase != 'STYLE') for (var child = 0; child < node.childNodes.length; ++child) child = child + searchWithinNode(node.childNodes[child], re);
return skip;
}
var borderColor = '#' + (searches + 8).toString(2).substr(-3).replace(/0/g, '3').replace(/1/g, '6');
var backColor = borderColor.replace(/3/g, 'c').replace(/6/g, 'f');
if (searches % 16 / 8 >= 1) {
var tempColor = borderColor;
borderColor = backColor;
backColor = tempColor;
}
searchWithinNode(document.body, text);
window.status = 'Found ' + count + ' match' + (count == 1 ? '' : 'es') + ' for ' + text + '.';
if (count > 0) searches++;
})();
It can be saved as a bookmarklet for easy access.
References
Regular Expression Search Bookmarklet
Highlight Regex Bookmarklet
A version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:43
add a comment |
Indian blogger Amit Agrawal has created a bookmarklet for this function which can do this easily.
http://www.labnol.org/internet/case-sensitive-find/28186/
Here is an improved version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:38
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f192437%2fcase-sensitive-searches-in-google-chrome%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
No; as of 6th April 2011, this feature request with Chromium (the open source code base of Chrome) has been rejected.
21
This is a shame, really.
– Revolutionair
Mar 5 '13 at 12:12
3
Use FF Luke.Use FF Luke.Use FF Luke.
– gaRex
Feb 20 '15 at 12:44
3
Chrome is the new IE.
– faintsignal
Dec 12 '16 at 19:18
not without an extension/plugin/bookmarklet
– Trevor Boyd Smith
Sep 4 '18 at 15:05
add a comment |
No; as of 6th April 2011, this feature request with Chromium (the open source code base of Chrome) has been rejected.
21
This is a shame, really.
– Revolutionair
Mar 5 '13 at 12:12
3
Use FF Luke.Use FF Luke.Use FF Luke.
– gaRex
Feb 20 '15 at 12:44
3
Chrome is the new IE.
– faintsignal
Dec 12 '16 at 19:18
not without an extension/plugin/bookmarklet
– Trevor Boyd Smith
Sep 4 '18 at 15:05
add a comment |
No; as of 6th April 2011, this feature request with Chromium (the open source code base of Chrome) has been rejected.
No; as of 6th April 2011, this feature request with Chromium (the open source code base of Chrome) has been rejected.
edited Nov 15 '11 at 23:44
answered Sep 24 '10 at 19:55
John WeldonJohn Weldon
1,3261015
1,3261015
21
This is a shame, really.
– Revolutionair
Mar 5 '13 at 12:12
3
Use FF Luke.Use FF Luke.Use FF Luke.
– gaRex
Feb 20 '15 at 12:44
3
Chrome is the new IE.
– faintsignal
Dec 12 '16 at 19:18
not without an extension/plugin/bookmarklet
– Trevor Boyd Smith
Sep 4 '18 at 15:05
add a comment |
21
This is a shame, really.
– Revolutionair
Mar 5 '13 at 12:12
3
Use FF Luke.Use FF Luke.Use FF Luke.
– gaRex
Feb 20 '15 at 12:44
3
Chrome is the new IE.
– faintsignal
Dec 12 '16 at 19:18
not without an extension/plugin/bookmarklet
– Trevor Boyd Smith
Sep 4 '18 at 15:05
21
21
This is a shame, really.
– Revolutionair
Mar 5 '13 at 12:12
This is a shame, really.
– Revolutionair
Mar 5 '13 at 12:12
3
3
Use FF Luke.Use FF Luke.Use FF Luke.
– gaRex
Feb 20 '15 at 12:44
Use FF Luke.Use FF Luke.Use FF Luke.
– gaRex
Feb 20 '15 at 12:44
3
3
Chrome is the new IE.
– faintsignal
Dec 12 '16 at 19:18
Chrome is the new IE.
– faintsignal
Dec 12 '16 at 19:18
not without an extension/plugin/bookmarklet
– Trevor Boyd Smith
Sep 4 '18 at 15:05
not without an extension/plugin/bookmarklet
– Trevor Boyd Smith
Sep 4 '18 at 15:05
add a comment |
There is also a nice plugin for that: QuickFind
This add-on looked promising, but doesn't work for me. The shortcut doesn't open the QuickFind text input for me. I'm on Version 69.0.3497.100 (32bit)
– Benny Bottema
Nov 5 '18 at 11:38
add a comment |
There is also a nice plugin for that: QuickFind
This add-on looked promising, but doesn't work for me. The shortcut doesn't open the QuickFind text input for me. I'm on Version 69.0.3497.100 (32bit)
– Benny Bottema
Nov 5 '18 at 11:38
add a comment |
There is also a nice plugin for that: QuickFind
There is also a nice plugin for that: QuickFind
answered Mar 4 '16 at 9:29
Lucas CimonLucas Cimon
298310
298310
This add-on looked promising, but doesn't work for me. The shortcut doesn't open the QuickFind text input for me. I'm on Version 69.0.3497.100 (32bit)
– Benny Bottema
Nov 5 '18 at 11:38
add a comment |
This add-on looked promising, but doesn't work for me. The shortcut doesn't open the QuickFind text input for me. I'm on Version 69.0.3497.100 (32bit)
– Benny Bottema
Nov 5 '18 at 11:38
This add-on looked promising, but doesn't work for me. The shortcut doesn't open the QuickFind text input for me. I'm on Version 69.0.3497.100 (32bit)
– Benny Bottema
Nov 5 '18 at 11:38
This add-on looked promising, but doesn't work for me. The shortcut doesn't open the QuickFind text input for me. I'm on Version 69.0.3497.100 (32bit)
– Benny Bottema
Nov 5 '18 at 11:38
add a comment |
Developer tools in Chrome supports case sensitive search.
Open Developer Tools for the current tab (Ctrl+Shift+I – that's capital "i"),
then open Search across all sources (Ctrl+Shift+F), and choose Match Case.
If case sensitivity isn't sufficient, this also supports regular expressions.
add a comment |
Developer tools in Chrome supports case sensitive search.
Open Developer Tools for the current tab (Ctrl+Shift+I – that's capital "i"),
then open Search across all sources (Ctrl+Shift+F), and choose Match Case.
If case sensitivity isn't sufficient, this also supports regular expressions.
add a comment |
Developer tools in Chrome supports case sensitive search.
Open Developer Tools for the current tab (Ctrl+Shift+I – that's capital "i"),
then open Search across all sources (Ctrl+Shift+F), and choose Match Case.
If case sensitivity isn't sufficient, this also supports regular expressions.
Developer tools in Chrome supports case sensitive search.
Open Developer Tools for the current tab (Ctrl+Shift+I – that's capital "i"),
then open Search across all sources (Ctrl+Shift+F), and choose Match Case.
If case sensitivity isn't sufficient, this also supports regular expressions.
edited Mar 5 at 3:39
Scott
16.2k113990
16.2k113990
answered Mar 5 at 2:50
user1004488user1004488
111
111
add a comment |
add a comment |
Here's a function which prompts for a word and performs a case-sensitive search:
var searches = searches || 0;
(function () {
var count = 0,
text;
text = prompt('Search:', '');
if (text == null || text.length === 0) return;
function searchWithinNode(node, re) {
var pos, skip, acronym, middlebit, endbit, middleclone;
skip = 0;
if (node.nodeType === 3) {
pos = node.data.search(re);
if (pos >= 0) {
acronym = document.createElement('ACRONYM');
acronym.title = 'Search ' + (searches + 1) + ': ' + re.toString();
acronym.style.backgroundColor = backColor;
acronym.style.borderTop = '1px solid ' + borderColor;
acronym.style.borderBottom = '1px solid ' + borderColor;
acronym.style.fontWeight = 'bold';
acronym.style.color = borderColor;
middlebit = node.splitText(pos);
endbit = middlebit.splitText(RegExp.lastMatch.length);
middleclone = middlebit.cloneNode(true);
acronym.appendChild(middleclone);
middlebit.parentNode.replaceChild(acronym, middlebit);
count++;
skip = 1;
}
} else if (node.nodeType == 1 && node.childNodes && node.tagName.toUpperCase() != 'SCRIPT' && node.tagName.toUpperCase != 'STYLE') for (var child = 0; child < node.childNodes.length; ++child) child = child + searchWithinNode(node.childNodes[child], re);
return skip;
}
var borderColor = '#' + (searches + 8).toString(2).substr(-3).replace(/0/g, '3').replace(/1/g, '6');
var backColor = borderColor.replace(/3/g, 'c').replace(/6/g, 'f');
if (searches % 16 / 8 >= 1) {
var tempColor = borderColor;
borderColor = backColor;
backColor = tempColor;
}
searchWithinNode(document.body, text);
window.status = 'Found ' + count + ' match' + (count == 1 ? '' : 'es') + ' for ' + text + '.';
if (count > 0) searches++;
})();
It can be saved as a bookmarklet for easy access.
References
Regular Expression Search Bookmarklet
Highlight Regex Bookmarklet
A version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:43
add a comment |
Here's a function which prompts for a word and performs a case-sensitive search:
var searches = searches || 0;
(function () {
var count = 0,
text;
text = prompt('Search:', '');
if (text == null || text.length === 0) return;
function searchWithinNode(node, re) {
var pos, skip, acronym, middlebit, endbit, middleclone;
skip = 0;
if (node.nodeType === 3) {
pos = node.data.search(re);
if (pos >= 0) {
acronym = document.createElement('ACRONYM');
acronym.title = 'Search ' + (searches + 1) + ': ' + re.toString();
acronym.style.backgroundColor = backColor;
acronym.style.borderTop = '1px solid ' + borderColor;
acronym.style.borderBottom = '1px solid ' + borderColor;
acronym.style.fontWeight = 'bold';
acronym.style.color = borderColor;
middlebit = node.splitText(pos);
endbit = middlebit.splitText(RegExp.lastMatch.length);
middleclone = middlebit.cloneNode(true);
acronym.appendChild(middleclone);
middlebit.parentNode.replaceChild(acronym, middlebit);
count++;
skip = 1;
}
} else if (node.nodeType == 1 && node.childNodes && node.tagName.toUpperCase() != 'SCRIPT' && node.tagName.toUpperCase != 'STYLE') for (var child = 0; child < node.childNodes.length; ++child) child = child + searchWithinNode(node.childNodes[child], re);
return skip;
}
var borderColor = '#' + (searches + 8).toString(2).substr(-3).replace(/0/g, '3').replace(/1/g, '6');
var backColor = borderColor.replace(/3/g, 'c').replace(/6/g, 'f');
if (searches % 16 / 8 >= 1) {
var tempColor = borderColor;
borderColor = backColor;
backColor = tempColor;
}
searchWithinNode(document.body, text);
window.status = 'Found ' + count + ' match' + (count == 1 ? '' : 'es') + ' for ' + text + '.';
if (count > 0) searches++;
})();
It can be saved as a bookmarklet for easy access.
References
Regular Expression Search Bookmarklet
Highlight Regex Bookmarklet
A version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:43
add a comment |
Here's a function which prompts for a word and performs a case-sensitive search:
var searches = searches || 0;
(function () {
var count = 0,
text;
text = prompt('Search:', '');
if (text == null || text.length === 0) return;
function searchWithinNode(node, re) {
var pos, skip, acronym, middlebit, endbit, middleclone;
skip = 0;
if (node.nodeType === 3) {
pos = node.data.search(re);
if (pos >= 0) {
acronym = document.createElement('ACRONYM');
acronym.title = 'Search ' + (searches + 1) + ': ' + re.toString();
acronym.style.backgroundColor = backColor;
acronym.style.borderTop = '1px solid ' + borderColor;
acronym.style.borderBottom = '1px solid ' + borderColor;
acronym.style.fontWeight = 'bold';
acronym.style.color = borderColor;
middlebit = node.splitText(pos);
endbit = middlebit.splitText(RegExp.lastMatch.length);
middleclone = middlebit.cloneNode(true);
acronym.appendChild(middleclone);
middlebit.parentNode.replaceChild(acronym, middlebit);
count++;
skip = 1;
}
} else if (node.nodeType == 1 && node.childNodes && node.tagName.toUpperCase() != 'SCRIPT' && node.tagName.toUpperCase != 'STYLE') for (var child = 0; child < node.childNodes.length; ++child) child = child + searchWithinNode(node.childNodes[child], re);
return skip;
}
var borderColor = '#' + (searches + 8).toString(2).substr(-3).replace(/0/g, '3').replace(/1/g, '6');
var backColor = borderColor.replace(/3/g, 'c').replace(/6/g, 'f');
if (searches % 16 / 8 >= 1) {
var tempColor = borderColor;
borderColor = backColor;
backColor = tempColor;
}
searchWithinNode(document.body, text);
window.status = 'Found ' + count + ' match' + (count == 1 ? '' : 'es') + ' for ' + text + '.';
if (count > 0) searches++;
})();
It can be saved as a bookmarklet for easy access.
References
Regular Expression Search Bookmarklet
Highlight Regex Bookmarklet
Here's a function which prompts for a word and performs a case-sensitive search:
var searches = searches || 0;
(function () {
var count = 0,
text;
text = prompt('Search:', '');
if (text == null || text.length === 0) return;
function searchWithinNode(node, re) {
var pos, skip, acronym, middlebit, endbit, middleclone;
skip = 0;
if (node.nodeType === 3) {
pos = node.data.search(re);
if (pos >= 0) {
acronym = document.createElement('ACRONYM');
acronym.title = 'Search ' + (searches + 1) + ': ' + re.toString();
acronym.style.backgroundColor = backColor;
acronym.style.borderTop = '1px solid ' + borderColor;
acronym.style.borderBottom = '1px solid ' + borderColor;
acronym.style.fontWeight = 'bold';
acronym.style.color = borderColor;
middlebit = node.splitText(pos);
endbit = middlebit.splitText(RegExp.lastMatch.length);
middleclone = middlebit.cloneNode(true);
acronym.appendChild(middleclone);
middlebit.parentNode.replaceChild(acronym, middlebit);
count++;
skip = 1;
}
} else if (node.nodeType == 1 && node.childNodes && node.tagName.toUpperCase() != 'SCRIPT' && node.tagName.toUpperCase != 'STYLE') for (var child = 0; child < node.childNodes.length; ++child) child = child + searchWithinNode(node.childNodes[child], re);
return skip;
}
var borderColor = '#' + (searches + 8).toString(2).substr(-3).replace(/0/g, '3').replace(/1/g, '6');
var backColor = borderColor.replace(/3/g, 'c').replace(/6/g, 'f');
if (searches % 16 / 8 >= 1) {
var tempColor = borderColor;
borderColor = backColor;
backColor = tempColor;
}
searchWithinNode(document.body, text);
window.status = 'Found ' + count + ' match' + (count == 1 ? '' : 'es') + ' for ' + text + '.';
if (count > 0) searches++;
})();
It can be saved as a bookmarklet for easy access.
References
Regular Expression Search Bookmarklet
Highlight Regex Bookmarklet
edited Jul 26 '13 at 2:12
answered Apr 13 '13 at 6:20
Paul SweattePaul Sweatte
563315
563315
A version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:43
add a comment |
A version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:43
A version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:43
A version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:43
add a comment |
Indian blogger Amit Agrawal has created a bookmarklet for this function which can do this easily.
http://www.labnol.org/internet/case-sensitive-find/28186/
Here is an improved version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:38
add a comment |
Indian blogger Amit Agrawal has created a bookmarklet for this function which can do this easily.
http://www.labnol.org/internet/case-sensitive-find/28186/
Here is an improved version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:38
add a comment |
Indian blogger Amit Agrawal has created a bookmarklet for this function which can do this easily.
http://www.labnol.org/internet/case-sensitive-find/28186/
Indian blogger Amit Agrawal has created a bookmarklet for this function which can do this easily.
http://www.labnol.org/internet/case-sensitive-find/28186/
answered Sep 9 '14 at 23:32
ePanditePandit
800156
800156
Here is an improved version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:38
add a comment |
Here is an improved version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:38
Here is an improved version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:38
Here is an improved version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2
– borisdiakur
Nov 12 '15 at 22:38
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f192437%2fcase-sensitive-searches-in-google-chrome%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
The good old days of XP...
– Luke Fisk-Lennon
Sep 22 '18 at 0:00
I noticed this was asked 8yr ago. Does anyone know if this is possible yet?
– Tim
Sep 28 '18 at 2:30