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

ブラウザのユーザーエージェントを表示するブックマークレット

Last updated at Posted at 2020-01-07

ブックマークレット

ダイアログで表示

window.promptメソッドを利用してダイアログで表示する。

javascript:(function() { window.prompt('userAgent', window.navigator.userAgent); })();

コンソールに表示

console.logメソッドを利用して Web コンソールに表示する。

javascript:(function() { console.log(window.navigator.userAgent); })();

window.navigator.userAgent

window.navigator.userAgentプロパティは、ブラウザのユーザーエージェントを表す文字列を返す。

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