chrome disable or change keyboard shortcut ctrl+shift+c developer tools console?












14















How can I disable the Keyboard Shortcut ctrl+shift+c in Google Chrome to bring up the Developer Tools console?



I find myself trying to copy+paste content from the browser and mistakenly typing ctrl+shift+c when I really want to do ctrl+c instead.



How can I disable the current keyboard binding or change ctrl+shift+c to do the same as ctrl+c in Google Chrome?










share|improve this question





























    14















    How can I disable the Keyboard Shortcut ctrl+shift+c in Google Chrome to bring up the Developer Tools console?



    I find myself trying to copy+paste content from the browser and mistakenly typing ctrl+shift+c when I really want to do ctrl+c instead.



    How can I disable the current keyboard binding or change ctrl+shift+c to do the same as ctrl+c in Google Chrome?










    share|improve this question



























      14












      14








      14


      4






      How can I disable the Keyboard Shortcut ctrl+shift+c in Google Chrome to bring up the Developer Tools console?



      I find myself trying to copy+paste content from the browser and mistakenly typing ctrl+shift+c when I really want to do ctrl+c instead.



      How can I disable the current keyboard binding or change ctrl+shift+c to do the same as ctrl+c in Google Chrome?










      share|improve this question
















      How can I disable the Keyboard Shortcut ctrl+shift+c in Google Chrome to bring up the Developer Tools console?



      I find myself trying to copy+paste content from the browser and mistakenly typing ctrl+shift+c when I really want to do ctrl+c instead.



      How can I disable the current keyboard binding or change ctrl+shift+c to do the same as ctrl+c in Google Chrome?







      keyboard shortcut-keys google-chrome






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 2 '15 at 13:27









      2707974

      8,10352238




      8,10352238










      asked Apr 2 '15 at 12:52









      719016719016

      1,4752467110




      1,4752467110






















          3 Answers
          3






          active

          oldest

          votes


















          6














          I've managed to make it work with shortkeys:




          • Keyboard shortcut: ctrl+shift+c

          • Behavior: Run JavaScript

          • Javascript code to run: document.execCommand('copy')


          Then just hit Save and reload tabs for the new setting to take effect.






          share|improve this answer































            6














            Edit:



            The originally suggested solution is no longer available.



            The one provided by Paweł Prażak currently work and actually copies the text to the clipboard.





            I was able to successfully override the Ctrl+Shift+C shortcut by using the Shortcut Manager extension and creating a new shortcut for the key combination.



            You can then reassign it to trigger a host of pre-configured actions, or any javascript / bookmarklet code of your choosing. I don't really have any experience with javascript, so I can't really figure out how to make it act like Ctrl+C, but as far simply preventing it from bringing up the Developer Tools console, simply setting it to execute:



            <script></script>


            seems to work.






            share|improve this answer


























            • Shortcut Manager is a Chrome extension not a Plugin, see this SO question: stackoverflow.com/questions/16815389/…

              – Lior
              Nov 1 '15 at 15:26













            • Your link to the shortcut manager extension is a 404

              – Factor Mystic
              Mar 8 '18 at 16:52



















            4














            You can do that with Shortcut Manager and document.execCommand('copy') command, which were added to Google Chrome 43+ (~April 2015)



            enter image description here






            share|improve this answer
























            • as of 2018 the Shortcut Manager is not there anymore, you can try shortkeys but it has a very small user base.

              – Paweł Prażak
              Jan 2 '18 at 20:05











            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            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%2faskubuntu.com%2fquestions%2f604434%2fchrome-disable-or-change-keyboard-shortcut-ctrlshiftc-developer-tools-console%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            6














            I've managed to make it work with shortkeys:




            • Keyboard shortcut: ctrl+shift+c

            • Behavior: Run JavaScript

            • Javascript code to run: document.execCommand('copy')


            Then just hit Save and reload tabs for the new setting to take effect.






            share|improve this answer




























              6














              I've managed to make it work with shortkeys:




              • Keyboard shortcut: ctrl+shift+c

              • Behavior: Run JavaScript

              • Javascript code to run: document.execCommand('copy')


              Then just hit Save and reload tabs for the new setting to take effect.






              share|improve this answer


























                6












                6








                6







                I've managed to make it work with shortkeys:




                • Keyboard shortcut: ctrl+shift+c

                • Behavior: Run JavaScript

                • Javascript code to run: document.execCommand('copy')


                Then just hit Save and reload tabs for the new setting to take effect.






                share|improve this answer













                I've managed to make it work with shortkeys:




                • Keyboard shortcut: ctrl+shift+c

                • Behavior: Run JavaScript

                • Javascript code to run: document.execCommand('copy')


                Then just hit Save and reload tabs for the new setting to take effect.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 2 '18 at 20:19









                Paweł PrażakPaweł Prażak

                276315




                276315

























                    6














                    Edit:



                    The originally suggested solution is no longer available.



                    The one provided by Paweł Prażak currently work and actually copies the text to the clipboard.





                    I was able to successfully override the Ctrl+Shift+C shortcut by using the Shortcut Manager extension and creating a new shortcut for the key combination.



                    You can then reassign it to trigger a host of pre-configured actions, or any javascript / bookmarklet code of your choosing. I don't really have any experience with javascript, so I can't really figure out how to make it act like Ctrl+C, but as far simply preventing it from bringing up the Developer Tools console, simply setting it to execute:



                    <script></script>


                    seems to work.






                    share|improve this answer


























                    • Shortcut Manager is a Chrome extension not a Plugin, see this SO question: stackoverflow.com/questions/16815389/…

                      – Lior
                      Nov 1 '15 at 15:26













                    • Your link to the shortcut manager extension is a 404

                      – Factor Mystic
                      Mar 8 '18 at 16:52
















                    6














                    Edit:



                    The originally suggested solution is no longer available.



                    The one provided by Paweł Prażak currently work and actually copies the text to the clipboard.





                    I was able to successfully override the Ctrl+Shift+C shortcut by using the Shortcut Manager extension and creating a new shortcut for the key combination.



                    You can then reassign it to trigger a host of pre-configured actions, or any javascript / bookmarklet code of your choosing. I don't really have any experience with javascript, so I can't really figure out how to make it act like Ctrl+C, but as far simply preventing it from bringing up the Developer Tools console, simply setting it to execute:



                    <script></script>


                    seems to work.






                    share|improve this answer


























                    • Shortcut Manager is a Chrome extension not a Plugin, see this SO question: stackoverflow.com/questions/16815389/…

                      – Lior
                      Nov 1 '15 at 15:26













                    • Your link to the shortcut manager extension is a 404

                      – Factor Mystic
                      Mar 8 '18 at 16:52














                    6












                    6








                    6







                    Edit:



                    The originally suggested solution is no longer available.



                    The one provided by Paweł Prażak currently work and actually copies the text to the clipboard.





                    I was able to successfully override the Ctrl+Shift+C shortcut by using the Shortcut Manager extension and creating a new shortcut for the key combination.



                    You can then reassign it to trigger a host of pre-configured actions, or any javascript / bookmarklet code of your choosing. I don't really have any experience with javascript, so I can't really figure out how to make it act like Ctrl+C, but as far simply preventing it from bringing up the Developer Tools console, simply setting it to execute:



                    <script></script>


                    seems to work.






                    share|improve this answer















                    Edit:



                    The originally suggested solution is no longer available.



                    The one provided by Paweł Prażak currently work and actually copies the text to the clipboard.





                    I was able to successfully override the Ctrl+Shift+C shortcut by using the Shortcut Manager extension and creating a new shortcut for the key combination.



                    You can then reassign it to trigger a host of pre-configured actions, or any javascript / bookmarklet code of your choosing. I don't really have any experience with javascript, so I can't really figure out how to make it act like Ctrl+C, but as far simply preventing it from bringing up the Developer Tools console, simply setting it to execute:



                    <script></script>


                    seems to work.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Mar 14 at 17:29

























                    answered Aug 26 '15 at 19:57









                    SamWNSamWN

                    580513




                    580513













                    • Shortcut Manager is a Chrome extension not a Plugin, see this SO question: stackoverflow.com/questions/16815389/…

                      – Lior
                      Nov 1 '15 at 15:26













                    • Your link to the shortcut manager extension is a 404

                      – Factor Mystic
                      Mar 8 '18 at 16:52



















                    • Shortcut Manager is a Chrome extension not a Plugin, see this SO question: stackoverflow.com/questions/16815389/…

                      – Lior
                      Nov 1 '15 at 15:26













                    • Your link to the shortcut manager extension is a 404

                      – Factor Mystic
                      Mar 8 '18 at 16:52

















                    Shortcut Manager is a Chrome extension not a Plugin, see this SO question: stackoverflow.com/questions/16815389/…

                    – Lior
                    Nov 1 '15 at 15:26







                    Shortcut Manager is a Chrome extension not a Plugin, see this SO question: stackoverflow.com/questions/16815389/…

                    – Lior
                    Nov 1 '15 at 15:26















                    Your link to the shortcut manager extension is a 404

                    – Factor Mystic
                    Mar 8 '18 at 16:52





                    Your link to the shortcut manager extension is a 404

                    – Factor Mystic
                    Mar 8 '18 at 16:52











                    4














                    You can do that with Shortcut Manager and document.execCommand('copy') command, which were added to Google Chrome 43+ (~April 2015)



                    enter image description here






                    share|improve this answer
























                    • as of 2018 the Shortcut Manager is not there anymore, you can try shortkeys but it has a very small user base.

                      – Paweł Prażak
                      Jan 2 '18 at 20:05
















                    4














                    You can do that with Shortcut Manager and document.execCommand('copy') command, which were added to Google Chrome 43+ (~April 2015)



                    enter image description here






                    share|improve this answer
























                    • as of 2018 the Shortcut Manager is not there anymore, you can try shortkeys but it has a very small user base.

                      – Paweł Prażak
                      Jan 2 '18 at 20:05














                    4












                    4








                    4







                    You can do that with Shortcut Manager and document.execCommand('copy') command, which were added to Google Chrome 43+ (~April 2015)



                    enter image description here






                    share|improve this answer













                    You can do that with Shortcut Manager and document.execCommand('copy') command, which were added to Google Chrome 43+ (~April 2015)



                    enter image description here







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Apr 26 '16 at 10:32









                    STX_user3581226STX_user3581226

                    1412




                    1412













                    • as of 2018 the Shortcut Manager is not there anymore, you can try shortkeys but it has a very small user base.

                      – Paweł Prażak
                      Jan 2 '18 at 20:05



















                    • as of 2018 the Shortcut Manager is not there anymore, you can try shortkeys but it has a very small user base.

                      – Paweł Prażak
                      Jan 2 '18 at 20:05

















                    as of 2018 the Shortcut Manager is not there anymore, you can try shortkeys but it has a very small user base.

                    – Paweł Prażak
                    Jan 2 '18 at 20:05





                    as of 2018 the Shortcut Manager is not there anymore, you can try shortkeys but it has a very small user base.

                    – Paweł Prażak
                    Jan 2 '18 at 20:05


















                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • 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%2faskubuntu.com%2fquestions%2f604434%2fchrome-disable-or-change-keyboard-shortcut-ctrlshiftc-developer-tools-console%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 did Captain America manage to do this?

                    迪纳利

                    南乌拉尔铁路局