« Business Essentials | トップページ | Microsoft 365 Cloud Fonts(修正版) »

[AppleScript]GoogleChrome再起動(edgeも同じよ)

AppleScriptsでアプリケーションを再起動させるのって
終了させて ディレイさせて 起動させるのがホトンドだけど

GoogleChromeはデバッグ用に終了、KILL、再起動等が用意されているんですね
知りませんでした。
chrome://about/
chrome://quit/
chrome://restart/
chrome://kill/

edgeも同じ
edge://about/
edge://quit/
edge://restart/
edge://kill/


ダウンロード - googlechromee5868de8b5b7e58b95.scpt.zip


(************************************************************************

     この上の▶︎をぽっちっとしてください
Google Chrome を再起動する

************************************************************************)






tell application "Google Chrome"
try
make new window
tell window 1
tell active tab
set URL to "chrome://restart/"
end tell
end tell
end try
end tell

tell application "Microsoft Edge"
try
make new window
tell window 1
tell active tab
set URL to "Edge://restart/"
end tell
end tell
end try
end tell

|

« Business Essentials | トップページ | Microsoft 365 Cloud Fonts(修正版) »

Google Chrome Enterprise」カテゴリの記事