0
0

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.

Gestures for Google Chrome で 現在のタブに指定URLを開く

Posted at

Google Chromeのアドオン「Gestures for Google Chrome」で
開いているタブの上に好きなサイトを開くJavaScriptと
設定方法を記載します。

①Gestureアドオンのオプション>Actionsタブ
上記のページを開いて「Action:」のプルダウンから
「...のスクリプトを実行」を選択。

②「NAME:」に好きなタイトルを入力。

③以下のスクリプトをコピーして「JavaScript:」に入力し
■ ~ ■までの部分に開きたいURLを入力する。

window.location.href = "■ここに開きたいURLを入力■" ;

【例】googleを開きたかったら...
window.location.href = "https://www.google.co.jp/" ;

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?