diff --git a/config.toml b/config.toml index c08c9da..3acac88 100644 --- a/config.toml +++ b/config.toml @@ -94,6 +94,9 @@ regs = [ "Software\\Google\\Chrome\\NativeMessagingHosts", "Software\\Chromium\\ [store.microsoft.msg_manifest_paths.windows] regs = [ "Software\\Microsoft\\Edge\\NativeMessagingHosts\\" ] +[store.yandex.msg_manifest_paths.windows] +regs = [ "Software\\Yandex\\YandexBrowser\\NativeMessagingHosts", "Software\\YandexBrowser\\NativeMessagingHosts" ] + ### MOZILLA MAC USER ### [[store.mozilla.msg_manifest_paths.mac.user]] @@ -144,6 +147,10 @@ only_if_dir_exists = "~/Library/Application Support/BraveSoftware/Brave-Browser- path = "~/Library/Application Support/Opera/NativeMessagingHosts/" only_if_dir_exists = "~/Library/Application Support/Opera/" +[[store.google.msg_manifest_paths.mac.user]] +path = "~/Library/Application Support/Yandex/YandexBrowser/NativeMessagingHosts/" +only_if_dir_exists = "~/Library/Application Support/Yandex/YandexBrowser/" + ### GOOGLE MAC SYSTEM ### [[store.google.msg_manifest_paths.mac.system]] @@ -238,6 +245,10 @@ only_if_dir_exists = "~/.var/app/com.chromium.Chromium" path = "~/.var/app/com.github.Eloston.UngoogledChromium/config/chromium/NativeMessagingHosts" only_if_dir_exists = "~/.var/app/com.github.Eloston.UngoogledChromium" +[[store.google.msg_manifest_paths.linux.user]] +path = "~/.config/yandex-browser/NativeMessagingHosts" +only_if_dir_exists = "~/.config/yandex-browser/" + ### GOOGLE LINUX SYSTEM ### [[store.google.msg_manifest_paths.linux.system]] diff --git a/tests/test.mjs b/tests/test.mjs index e15ccfd..5f35513 100755 --- a/tests/test.mjs +++ b/tests/test.mjs @@ -40,6 +40,7 @@ const install_locations = { [".config/vivaldi-snapshot/NativeMessagingHosts", "ggl"], [".config/opera/NativeMessagingHosts", "ggl"], [".config/BraveSoftware/Brave-Browser/NativeMessagingHosts", "ggl"], + [".config/yandex-browser/NativeMessagingHosts/", "ggl"], ], system: [ ["/etc/opt/edge/native-messaging-hosts/", "ms"], @@ -63,6 +64,7 @@ const install_locations = { ["Library/Application Support/Mozilla/NativeMessagingHosts/", "amo"], ["Library/Application Support/Opera/NativeMessagingHosts/", "ggl"], ["Library/Application Support/BraveSoftware/Brave-Browser/NativeMessagingHosts/", "ggl"], + ["Library/Application Support/Yandex/YandexBrowser/NativeMessagingHosts/", "ggl"], ], system: [ ["/Library/Google/Chrome/NativeMessagingHosts/", "ggl"],