chrome disable or change keyboard shortcut ctrl+shift+c developer tools console?
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
add a comment |
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
add a comment |
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
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
keyboard shortcut-keys google-chrome
edited Apr 2 '15 at 13:27
2707974
8,10352238
8,10352238
asked Apr 2 '15 at 12:52
719016719016
1,4752467110
1,4752467110
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
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.
add a comment |
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.
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
add a comment |
You can do that with Shortcut Manager and document.execCommand('copy')
command, which were added to Google Chrome 43+ (~April 2015)
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
add a comment |
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
});
}
});
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%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
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.
add a comment |
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.
add a comment |
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.
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.
answered Jan 2 '18 at 20:19
Paweł PrażakPaweł Prażak
276315
276315
add a comment |
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
You can do that with Shortcut Manager and document.execCommand('copy')
command, which were added to Google Chrome 43+ (~April 2015)
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
add a comment |
You can do that with Shortcut Manager and document.execCommand('copy')
command, which were added to Google Chrome 43+ (~April 2015)
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
add a comment |
You can do that with Shortcut Manager and document.execCommand('copy')
command, which were added to Google Chrome 43+ (~April 2015)
You can do that with Shortcut Manager and document.execCommand('copy')
command, which were added to Google Chrome 43+ (~April 2015)
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
add a comment |
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
add a comment |
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.
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%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
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