LoginSignup
6
9

More than 3 years have passed since last update.

Google検索と同じワードでツイート検索するブックマークレット

Last updated at Posted at 2017-03-26

Googleの検索結果ページで使用すると、同じ検索ワードでツイート検索するブックマークレットをつくりました。

ウェブ版でツイート検索

javascript:window.open(`https://twitter.com/search?q=${encodeURIComponent(document.title.replace(/ - Google 検索$/,''))}`)

Google検索結果ページでブックマークレットを実行すると、Twitterウェブ版のツイート検索画面を開きます。

Twitterアプリでツイート検索

javascript:location.href=`twitter://search?query=${encodeURIComponent(document.title.replace(/ - Google 検索$/,''))}`

スマートフォン(iPhone、Android)で、Google検索結果ページでブックマークレットを実行すると、Twitterアプリのツイート検索画面を開きます。
URLスキームという仕組みで、通常はhttphttpsなどのプロトコルを指定するスキーム部に、twitterのようなアプリ固有のスキームを指定することで、そのアプリを開くことができます。
TwitterのURLスキームには複数のオプションがあり、今回はツイート検索画面を開くsearchを使用しています。

6
9
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
6
9