firefox: enable ctrl-shift-c-should-copy extension

This commit is contained in:
2024-01-03 13:42:58 +00:00
parent 1261a6f452
commit 75b649543a
2 changed files with 12 additions and 0 deletions

View File

@@ -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

View File

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