diff --git a/catalog.json b/catalog.json
index 0b5c16cf..28910df4 100644
--- a/catalog.json
+++ b/catalog.json
@@ -2362,6 +2362,26 @@
"version": "1.0.0"
}
},
+ "remove-quotes-from-ctrl-shift-c": {
+ "details": {
+ "defaultSorting": 0,
+ "published": 1733929613000,
+ "rating": 0,
+ "ratingUsers": 0,
+ "updated": 1733929613000,
+ "users": 0
+ },
+ "metadata": {
+ "author": "draxas",
+ "description": "Intercepts the copied file path (CTRL+SHIFT+C in Explorer) and removes surrounding quotes",
+ "github": "https://github.com/draxas",
+ "include": [
+ "explorer.exe"
+ ],
+ "name": "CTRL+SHIFT+C quotes remover",
+ "version": "1.0"
+ }
+ },
"ribbon-caption-icon-fix": {
"details": {
"defaultSorting": 3080,
diff --git a/changelogs/remove-quotes-from-ctrl-shift-c.md b/changelogs/remove-quotes-from-ctrl-shift-c.md
new file mode 100644
index 00000000..88e2cbb9
--- /dev/null
+++ b/changelogs/remove-quotes-from-ctrl-shift-c.md
@@ -0,0 +1,3 @@
+## 1.0 ([Dec 11, 2024](https://github.com/ramensoftware/windhawk-mods/blob/03e48ec11ead99e4fff7a66162d13dcd90dca4b7/mods/remove-quotes-from-ctrl-shift-c.wh.cpp))
+
+Initial release.
diff --git a/mods/remove-quotes-from-ctrl-shift-c.wh.cpp b/mods/remove-quotes-from-ctrl-shift-c.wh.cpp
new file mode 100644
index 00000000..7e956353
--- /dev/null
+++ b/mods/remove-quotes-from-ctrl-shift-c.wh.cpp
@@ -0,0 +1,92 @@
+// ==WindhawkMod==
+// @id remove-quotes-from-ctrl-shift-c
+// @name CTRL+SHIFT+C quotes remover
+// @description Intercepts the copied file path (CTRL+SHIFT+C in Explorer) and removes surrounding quotes
+// @version 1.0
+// @author draxas
+// @github https://github.com/draxas
+// @include explorer.exe
+// ==/WindhawkMod==
+
+// ==WindhawkModReadme==
+/*
+# Remove quotes from CTRL+SHIFT+C file paths
+
+When you press `CTRL+SHIFT+C` on a file in Windows Explorer, the file’s full path is usually copied to the clipboard with quotes, for example: `"C:\Path\To\File.txt"`. With this mod, those quotes are automatically removed, leaving you with a clean, unquoted path for easier use.
+
+## How it works
+- Whenever you copy a file path using `CTRL+SHIFT+C`, this mod intercepts the text before it’s placed into the clipboard.
+- If the path is enclosed in quotes, they are removed.
+- You end up with a path like `C:\Path\To\File.txt` instead of `"C:\Path\To\File.txt"`.
+
+No additional configuration is needed—just use CTRL+SHIFT+C as you normally would.
+*/
+// ==/WindhawkModReadme==
+
+// ==WindhawkModSettings==
+// No settings are defined for this mod.
+// ==/WindhawkModSettings==
+
+#include When you press No additional configuration is needed—just use CTRL+SHIFT+C as you normally would.CTRL+SHIFT+C
on a file in Windows Explorer, the file’s full path is usually copied to the clipboard with quotes, for example: "C:\Path\To\File.txt"
. With this mod, those quotes are automatically removed, leaving you with a clean, unquoted path for easier use.How it works
+
+
+CTRL+SHIFT+C
, this mod intercepts the text before it’s placed into the clipboard.C:\Path\To\File.txt
instead of "C:\Path\To\File.txt"
.