Mac: reloading document in Chrome or Firefox?

后端 未结 4 1850
野趣味
野趣味 2020-12-28 22:52

How can I tell Chrome or Firefox to reload the document in the top window? Here\'s what I\'m using for Safari:

osascript -e \'
    tell application \"Safari         


        
4条回答
  •  时光说笑
    2020-12-28 23:37

    Here's the code for Chrome:

    tell application "Google Chrome"
        tell the active tab of its first window
            reload
        end tell
    end tell
    

    Or more concisely:

    tell application "Google Chrome" to tell the active tab of its first window
        reload
    end tell
    

提交回复
热议问题