LoginSignup
1
2

More than 5 years have passed since last update.

saferiで開いているページをchromeで開く

Last updated at Posted at 2017-01-18

Chromeで開いているURLをFirefoxとSafariで開くAppleScript を真似して作成。

chromeで開く.scpt
tell application "Safari"
    set vURL to get URL of current tab of window 1
end tell

tell application "Google Chrome"
    open location vURL
    activate
end tell
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2