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;
}







41















Is there a way to perform case sensitive on page searches in Google Chrome?



screenshot of browser



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?










share|improve this question




















  • 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


















41















Is there a way to perform case sensitive on page searches in Google Chrome?



screenshot of browser



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?










share|improve this question




















  • 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














41












41








41


6






Is there a way to perform case sensitive on page searches in Google Chrome?



screenshot of browser



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?










share|improve this question
















Is there a way to perform case sensitive on page searches in Google Chrome?



screenshot of browser



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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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














  • 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










5 Answers
5






active

oldest

votes


















31














No; as of 6th April 2011, this feature request with Chromium (the open source code base of Chrome) has been rejected.






share|improve this answer





















  • 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



















1














There is also a nice plugin for that: QuickFind






share|improve this answer
























  • 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





















1














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.






share|improve this answer

































    0














    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






    share|improve this answer


























    • A version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2

      – borisdiakur
      Nov 12 '15 at 22:43





















    0














    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/






    share|improve this answer
























    • Here is an improved version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2

      – borisdiakur
      Nov 12 '15 at 22:38












    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    31














    No; as of 6th April 2011, this feature request with Chromium (the open source code base of Chrome) has been rejected.






    share|improve this answer





















    • 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
















    31














    No; as of 6th April 2011, this feature request with Chromium (the open source code base of Chrome) has been rejected.






    share|improve this answer





















    • 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














    31












    31








    31







    No; as of 6th April 2011, this feature request with Chromium (the open source code base of Chrome) has been rejected.






    share|improve this answer















    No; as of 6th April 2011, this feature request with Chromium (the open source code base of Chrome) has been rejected.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    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














    • 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













    1














    There is also a nice plugin for that: QuickFind






    share|improve this answer
























    • 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


















    1














    There is also a nice plugin for that: QuickFind






    share|improve this answer
























    • 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
















    1












    1








    1







    There is also a nice plugin for that: QuickFind






    share|improve this answer













    There is also a nice plugin for that: QuickFind







    share|improve this answer












    share|improve this answer



    share|improve this answer










    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





















    • 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













    1














    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.






    share|improve this answer






























      1














      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.






      share|improve this answer




























        1












        1








        1







        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.






        share|improve this answer















        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.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 5 at 3:39









        Scott

        16.2k113990




        16.2k113990










        answered Mar 5 at 2:50









        user1004488user1004488

        111




        111























            0














            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






            share|improve this answer


























            • A version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2

              – borisdiakur
              Nov 12 '15 at 22:43


















            0














            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






            share|improve this answer


























            • A version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2

              – borisdiakur
              Nov 12 '15 at 22:43
















            0












            0








            0







            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






            share|improve this answer















            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







            share|improve this answer














            share|improve this answer



            share|improve this answer








            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





















            • 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













            0














            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/






            share|improve this answer
























            • Here is an improved version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2

              – borisdiakur
              Nov 12 '15 at 22:38
















            0














            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/






            share|improve this answer
























            • Here is an improved version including a gutter: gist.github.com/borisdiakur/9f9d751b4c9cf5acafa2

              – borisdiakur
              Nov 12 '15 at 22:38














            0












            0








            0







            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/






            share|improve this answer













            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/







            share|improve this answer












            share|improve this answer



            share|improve this answer










            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



















            • 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


















            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            How do I know what Microsoft account the skydrive app is syncing to?

            When does type information flow backwards in C++?

            Grease: Live!