Google Chromeの最前面のウィンドウで表示中のページのHTMLソースを取得するAppleScriptです。
ChromeをMacの自動処理の部品として使おうとはまったく考えませんが、命令が存在しないぐらいで「できない」というのも何なので、JavaScript経由でソースを取得できないか調べてみたら、できました。
あらかじめ、Google Chromeの「表示」>「開発/管理」>「Apple EventsからのJavaScriptを許可」を実行しておく必要があります。
AppleScript名:最前面のウィンドウのHTMLソースを取得する |
tell application "Google Chrome" tell window 1 tell active tab set htmlRes to (execute javascript "document.getElementsByTagName(’html’)[0].innerHTML") end tell end tell end tell |
com.google.Chrome
More from my site
(Visited 734 times, 1 visits today)