Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm tinkering with a phpbb mod which adds a skin for mobile phones, and to work on it in my computer I want to mimic an iphone. In Firefox I manage to do this using the "user agent switcher" extension which comes with built-in "iphone" feature:

https://addons.mozilla.org/en-us/firefox/addon/user-agent-switcher/

However, in Chrome (which I prefer) I cannot make this happen. I downloaded what seemed to be the relevant extension:

https://chrome.google.com/extensions/detail/aafciojnlamllgpkpdkbamkfgbofhgcj?hl=he

It doesn't come with a built-in iPhone mode, so I added the following user agent:

"Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543 Safari/419.3"

However, this seems to have absolutely no effect - the pages load normally and not in the mobile skin.

share|improve this question
That extension seems to have been removed. – davenpcj Sep 19 '11 at 17:21
1  
The Chrome Extension is a bad link. Anyone have an updated link? – artlung Sep 26 '11 at 20:55

6 Answers

up vote 8 down vote accepted

You can change chrome user agent by running it from command line:

chrome.exe --user-agent="User Agent String"

check out This Page for more information

share|improve this answer
Your link is broken, I believe it should now point to : chromesavant.blogspot.com/2012/01/… – HoLyVieR Feb 6 '12 at 15:03
Thanks. I've updated the link – Rubinsh Feb 16 '12 at 4:35

With the latest release in the Chrome Dev Channel (version 18) you can browse to developer tool settings and change the user agent string directly without needing any plugins or command line options.

First download Chrome from the developer channel, restart it, CTRL+SHIFT+I and click settings on bottom right. You should now be able to select the UA string.

Chrome Developer Channel User Agent String

share|improve this answer
2  
You're the man aleemb! – alex Feb 13 '12 at 7:07
This is no longer just in the Dev channel. My regular Chrome (version 23) has this, plus some extra spoofing features like "device metrics" and "emulate touch". Note that this is all in the "Overrides" tab now, of the Chrome developer tool settings. – thaddeusmt Nov 15 '12 at 22:18

The User-Agent Switcher for Chrome works nicely, I just tested it out.

share|improve this answer

I downloaded the portable version of chrome and created a custom shortcut to it to always have a mobile browser.

F:_SOE\Apps\GoogleChromePortable\GoogleChromePortable.exe --user-agent="Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543 Safari/419.3"

share|improve this answer
This doesn't seem to work for me. I added a shortcut to my start menu and updated the target box with the new user agent string. I check about: in the browser and it confirms the new user agent is set, however, it doesn't render the site in its mobile version. Any suggestions? – worked Feb 24 '12 at 14:22

There is now the Ultimate User Agent Switcher in the Chrome Webstore. It's awesome!

share|improve this answer

I don't think chrome can do that but using one of the proxy out there you would be able to do it like privoxy

share|improve this answer
Since I had access to the source code I simply made a clone where the iPhone skin loads automatically. It's a workaround, but probably the most easy way to get rid of the problem... – Gadi A Mar 16 '11 at 12:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.