diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 1f1cfb1e..1a3ffdbe 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -315,6 +315,10 @@
"message": "Manage your prompts",
"description": ""
},
+ "prefs_OptionText_btnManageCustomDataPH": {
+ "message": "Manage your data placeholders",
+ "description": ""
+ },
"prefsInfoTitle": {
"message": "Important Information",
"description": ""
diff --git a/options/mzta-options.html b/options/mzta-options.html
index 7cde8e5a..8c0db55f 100644
--- a/options/mzta-options.html
+++ b/options/mzta-options.html
@@ -543,6 +543,7 @@
__MSG_prefsInfoTitle__
diff --git a/options/mzta-options.js b/options/mzta-options.js
index 9828e054..85e842d2 100644
--- a/options/mzta-options.js
+++ b/options/mzta-options.js
@@ -482,6 +482,10 @@ document.addEventListener('DOMContentLoaded', async () => {
openTab('../pages/customprompts/mzta-custom-prompts.html');
});
+ document.getElementById('btnManageCustomDataPH').addEventListener('click', () => {
+ openTab('../pages/customdataplaceholders/mzta-custom-dataplaceholders.html');
+ });
+
document.getElementById('btnManageTagsInfo').addEventListener('click', () => {
openTab('../pages/addtags/mzta-add-tags.html');
});