4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AutoHotkeyでChromeからタイトルとURLを取得するスクリプトを書いてみた

Posted at

#AutoHotkeyでChromeからタイトルとURLを取得するスクリプトを書いてみた
neokix

#背景
GoogleのURL短縮サービスがなくなるらしいので,もう短縮しないことにして,とにかくURLとタイトルだけ取得できればいいやって思ってる方も少なくないと思います.
ということで,今回はAutoHotkeyでChromeからタイトルとURLを取得するものを書いてみました.

#スクリプト

#IfWinActive, ahk_class Chrome_WidgetWin_1
:*:url//:: 						;url//とタイプすると
	Tooltip, Your URL is now copied
	WinGetTitle, vwintitlechrome, 			;Windowのタイトルを取得する
	vwintitle := SubStr(vwintitlechrome, 1, -16)	;ついてくる 【- Google Chrome】 の文字列を削除
	clipboard =
	Send, ^{l}   				        ;意外と知らないCtrl+Lで,URLのバーへ移動
	sleep, 400
	Send, ^{c}
	ClipWait, 5
	url := clipboard
	clipboard = %vwintitle% : %url%
	Tooltip, 
	return
#IfWinExist,

ポイントはあえて言うなら,Ctrl+Lがアドレスバーへの移動···というぐらいでしょうか.
あと,WinGetTitleではGoogle Chromeの文字がつきまとうので,これもSubstringで消します.

毎度ジャンキーなコードですみません.
ブラウジングのお供になれば幸いです.

では!

neokix

4
2
0

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?