├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── img ├── open-private-window.png ├── open-safari-window-url.png ├── open-safari-window.png ├── safari-icon.png ├── stp.png ├── sw.png ├── swp.png ├── swt.png └── swu.png └── src ├── close_tab_by_url.js ├── focus_tab.js ├── get_focus_tab.js ├── list_history.zsh ├── list_tabs.js ├── list_tabs.zsh ├── new_private_window.zsh ├── new_window.zsh ├── open_tab.js └── tab_to_private.zsh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/README.md -------------------------------------------------------------------------------- /img/open-private-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/img/open-private-window.png -------------------------------------------------------------------------------- /img/open-safari-window-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/img/open-safari-window-url.png -------------------------------------------------------------------------------- /img/open-safari-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/img/open-safari-window.png -------------------------------------------------------------------------------- /img/safari-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/img/safari-icon.png -------------------------------------------------------------------------------- /img/stp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/img/stp.png -------------------------------------------------------------------------------- /img/sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/img/sw.png -------------------------------------------------------------------------------- /img/swp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/img/swp.png -------------------------------------------------------------------------------- /img/swt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/img/swt.png -------------------------------------------------------------------------------- /img/swu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/img/swu.png -------------------------------------------------------------------------------- /src/close_tab_by_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/src/close_tab_by_url.js -------------------------------------------------------------------------------- /src/focus_tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/src/focus_tab.js -------------------------------------------------------------------------------- /src/get_focus_tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/src/get_focus_tab.js -------------------------------------------------------------------------------- /src/list_history.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/src/list_history.zsh -------------------------------------------------------------------------------- /src/list_tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/src/list_tabs.js -------------------------------------------------------------------------------- /src/list_tabs.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/src/list_tabs.zsh -------------------------------------------------------------------------------- /src/new_private_window.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/src/new_private_window.zsh -------------------------------------------------------------------------------- /src/new_window.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/src/new_window.zsh -------------------------------------------------------------------------------- /src/open_tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/src/open_tab.js -------------------------------------------------------------------------------- /src/tab_to_private.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanstrouble/safari-control-alfred-workflow/HEAD/src/tab_to_private.zsh --------------------------------------------------------------------------------