LoginSignup
2
2

More than 5 years have passed since last update.

Safariで自動でタブ切り替え・更新をする

Last updated at Posted at 2015-02-19

動機

Webの管理画面やJenkins、Trelloなどの画面をオフィスのメンバーで共有し、タスク管理を効率化したいと思いました。

概要

下準備

Mac miniとApple TV、それに大型モニタを活用して、Safariの画面をモニタに映します。

スクリプト

tell application "Safari"
    repeat
        repeat with i from (count of tabs of window 1) to 1 by -1
            set thisTab to tab i of window 1
            set current tab of window 1 to thisTab
            delay 30
            set sameURL to URL of current tab of front window
            set URL of current tab of front window to sameURL
            delay 30
        end repeat
    end repeat
end tell

結果

これで共有モニターに重要な情報を常時表示しておくことができます。

不明な点

ChromeやFirefoxで同じことができるのかは知りません。やったことがある人がいたら教えてください。

2
2
2

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
2
2