-
-
Save kevinold/ce04e7be27c594267d00 to your computer and use it in GitHub Desktop.
Open Chrome Tab in Safari or Firefox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Open URL of currently active Google Chrome tab in Firefox | |
-- | |
-- Open Automator -> Service. | |
-- At the top, select "no input" and Google Chrome. | |
-- Find "Run AppleScript" in the library, and drag it to the right. | |
-- Paste this code in the textbox. | |
-- Save this script as "Open in Firefox". | |
-- Open System Preferences -> Keyboard -> Keyboard Shortcuts -> Services. | |
-- Assign a shortcut to "Open in Firefox". | |
tell application "Google Chrome" to set location to URL of active tab of front window | |
do shell script "open -a Firefox " & quoted form of location |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Open URL of currently active Google Chrome tab in Safari | |
-- | |
-- Open Automator -> Service. | |
-- At the top, select "no input" and Google Chrome. | |
-- Find "Run AppleScript" in the library, and drag it to the right. | |
-- Paste this code in the textbox. | |
-- Save this script as "Open in Safari". | |
-- Open System Preferences -> Keyboard -> Keyboard Shortcuts -> Services. | |
-- Assign a shortcut to "Open in Safari". | |
tell application "Google Chrome" to set location to URL of active tab of front window | |
do shell script "open -a Safari " & quoted form of location |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment