「Safari」の版間の差分
提供: MacWiki
(→AppleScript) |
(→関連するソフトウェア) |
||
行12: | 行12: | ||
*http://www.scifience.net/safarispeed/ | *http://www.scifience.net/safarispeed/ | ||
+ | |||
+ | === [[SafariStand]] === | ||
+ | |||
+ | *http://hetima.com/safari/stand.html | ||
== Tips == | == Tips == |
2008年3月23日 (日) 21:40時点における版
Safari とは?
Apple 純正の Web ブラウザです。 KHTML を拡張した WebKit を使用しており、 動作が軽快なのが特徴です。
関連するソフトウェア
SafariSpeed
SafariStand
Tips
以下のコマンドを実行すると、デバッグ用のメニューが追加されます。
% defaults write com.apple.Safari IncludeDebugMenu -bool true
AppleScript
- Webページのタイトル等を取得する
tell application "Safari" set theTitle to name of front document set theURL to URL of front document end tell -- set the clipboard to "* " & theTitle & return & theURL & return
- Webページを開く
set theURL to "http://macwiki.sourceforge.jp/wiki/" tell application "Safari" open location theURL end tell
- Safari のウィンドウを画面全体にする
tell application "Safari" activate if not (exists front document) then make document do JavaScript "moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight)" in front document end tell
- その他、参考 URL