firefox: enable ctrl-shift-c-should-copy extension
This commit is contained in:
@@ -178,6 +178,10 @@ in
|
||||
package = pkgs.firefox-extensions.bypass-paywalls-clean;
|
||||
enable = lib.mkDefault true;
|
||||
};
|
||||
ctrl-shift-c-should-copy = {
|
||||
package = pkgs.firefox-extensions.ctrl-shift-c-should-copy;
|
||||
enable = lib.mkDefault true;
|
||||
};
|
||||
ether-metamask = {
|
||||
package = pkgs.firefox-extensions.ether-metamask;
|
||||
enable = lib.mkDefault false; # until i can disable the first-run notification
|
||||
|
@@ -33,6 +33,14 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = "https://github.com/jscher2000/Ctrl-Shift-C-Should-Copy";
|
||||
description = "Potential Firefox extension to intercept Ctrl+Shift+C, block opening developer tools, and copy the selection to the clipboard.";
|
||||
longDescription = ''
|
||||
it comes with several limitations:
|
||||
- doesn't work on new-tab page
|
||||
- doesn't work if the focus isn't on page content
|
||||
- e.g. ctrl+shift+c from URL bar still brings up dev console, incorrectly.
|
||||
|
||||
the proper fix to disabling Ctrl+Shift+C seems to require compiling Firefox from source, as of their Quantum project post-2019.
|
||||
'';
|
||||
maintainer = with lib.maintainers; [ colinsane ];
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user