Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Get user agent string from console

  • 3 답장
  • 1 이 문제를 만남
  • 1584 보기
  • 최종 답변자: cor-el

more options

I open the terminal (I'm using FreeBSD) and I run: `firefox --help` and I get a lot of command line options. However there seems to be no way to simply get the user agent string. This is kind of annoying because I might want to plug the current version of my Firefox browser in some automated scripts. At the moment I need to open Firefox, then go to the console and type in: `window.navigator.userAgent` copy the string manually and paste it wherever I want to use it. It would be really nice if there could be an extra option to the `firefox` command, like: `firefox --user-agent` that prints this information in the console. Maybe there's a way, if it is it must be really hidden because I couldn't find relevant information on how to do it.

Kind regards, Lucas.

I open the terminal (I'm using FreeBSD) and I run: `firefox --help` and I get a lot of command line options. However there seems to be no way to simply get the user agent string. This is kind of annoying because I might want to plug the current version of my Firefox browser in some automated scripts. At the moment I need to open Firefox, then go to the console and type in: `window.navigator.userAgent` copy the string manually and paste it wherever I want to use it. It would be really nice if there could be an extra option to the `firefox` command, like: `firefox --user-agent` that prints this information in the console. Maybe there's a way, if it is it must be really hidden because I couldn't find relevant information on how to do it. Kind regards, Lucas.

선택된 해결법

Yes, the bookmarklet is meant to be used in a running Firefox application.

The user agent can be different for each profile and extensions or the user can override the user agent, so it is not possible to get the user agent from outside Firefox.

If you know the Firefox version then you can construct the agent to replacing the rv:xx.0 and Firefox/xx.0 in the default user agent for this platform and display manager (X11 or Wayland).

For the user agent you used to post this question:

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (3)

more options

You can use a JavaScript bookmarklet:

  • javascript:void(prompt('navigator.userAgent',navigator.userAgent))
more options

Hi cor-el. Thanks for your reply. I'm not fully understanding what you're suggesting. If this involves *opening* the browser then this is definitely something I don't want. The idea is not to open the browser. For example if you open a console in a Linux or BSD box and run: `firefox --version` you will get a string like: "Mozilla Firefox 89.0.2". I'm looking for a similar solution but for the user-agent (hence the suggestion of doing something like: `firefox --user-agent` in the original post). I've attached an image that displays what I'm after.

Kind regards, Lucas.

글쓴이 liendolucas84 수정일시

more options

선택된 해결법

Yes, the bookmarklet is meant to be used in a running Firefox application.

The user agent can be different for each profile and extensions or the user can override the user agent, so it is not possible to get the user agent from outside Firefox.

If you know the Firefox version then you can construct the agent to replacing the rv:xx.0 and Firefox/xx.0 in the default user agent for this platform and display manager (X11 or Wayland).

For the user agent you used to post this question: