From d81c721391bc3e0962b8186f2cd6e5e2abd14aca Mon Sep 17 00:00:00 2001 From: Frederick Ros Date: Sun, 22 Aug 2021 15:25:45 +0200 Subject: [PATCH] Added support for Brave --- src/pocket_save.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pocket_save.py b/src/pocket_save.py index 4a48828..169a7d8 100644 --- a/src/pocket_save.py +++ b/src/pocket_save.py @@ -43,6 +43,10 @@ 'url': """osascript -e 'tell application "Chromium" to return URL of active tab of front window'""", 'title': """osascript -e 'tell application "Chromium" to return title of active tab of front window'""", }, + 'Brave Browser': { + 'url': """osascript -e 'tell application "Brave Browser" to return URL of active tab of front window'""", + 'title': """osascript -e 'tell application "Brave Browser" to return title of active tab of front window'""", + }, 'Vivaldi': { 'url': """osascript -e 'tell application "Vivaldi" to return URL of active tab of front window'""", 'title': """osascript -e 'tell application "Vivaldi" to return title of active tab of front window'""",