1
1

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.

スマホの検証にSafariを使う場合のUA設定

Posted at

スマホサイトの動作確認(PC上で)する場合、safariを使っています。
他のブラウザのUA偽装をするアドオンでも良いのですが、safariでチェックする方が
信頼性があります(iPhone上のsafariと同等との話を何処かで見た気がする…)

ただ、このままだとUAはiPhoneのsafariになってしまうので、Androidを追加。
もちろん実機での確認もしますが、開発中はPC上で確認すると思います。
safariでUAを設定する方法を備忘録。

Windowsの場合、C:\Program Files\Safari\Safari.resources\ 配下にある以下のファイルを編集する。
自分の場合は所持しているSOL25(XPERIA ZL2)の設定にしてみた。

UserAgents.plist
<dict>
	<key>name</key>
	<string>SONY SOL25</string>
	<key>version</key>
	<string>11.11</string>
	<key>platform</key>
	<string>Android</string>
	<key>user-agent</key>
	<string>Mozilla/5.0 (Linux; U; Android 4.4.2; ja-jp; SOL25 Build/xxxx) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30</string>
</dict>

これで、ユーザーエージェントの項目に「SONY SOL25」が追加される。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?