i just bought the new nexus 5 which screen is on full hd.
My surprise was not so good when I opened chrome and I saw that the browser was not showing websites in full hd but in a ridiculous 1024 resolution. Searching on the parameters and on the web I didn't find a way to change the resolution to 1080.
Can't you tell me a way to get a full hd phone browser ?
Thank you !!!
Not sure what you are referencing. The browser does not "downsample" the content. I have a Nexus 5 myself and have no issues with the Chrome browser
Related
Is there any way I can record My Electron App's Window? My monitor isn't 1080p so I have set that resolution in Dev Tools. I wanna record the window in 1080p Resolution, When I try to record using a screen recorder and only capture the window part. The quality that comes out is really bad. I would love if someone can tell me a solution!
And I mentioned Chrome in the Title because electron also uses Chrome!
I use Chrome Debugger on my PC to debug my web application, and it has a new handy feature where I can set the debuger to a mobile device, in this case Iphone 7.
Supposedly this allows you to emulate a mobile device. However, despite doing this I am getting different results, that is, it is not emulating the iPhone 7 device accurately.
There is an SVG component completely missing in the mobile browser. Very odd.
I have never troubleshot my web app on a mobile device, but need a means to do this. I also need a means to report the debugger as not accurately emulating the mobile device.
I did some googling and found this SO Q/A, however it is about 10 years old.
Here is a screen shot of the emulator and the icon that is actually missing on my mobile device:
Those situations are tricky...you need to use a device emulator such as https://crossbrowsertesting.com/
Google Chrome's emulation feature requires you to enter the device resolution and the device pixel ratio. It has presets for iPhone 5 but not for iPhone 6 or iPhone 6+ yet.
Do you know what resolution and pixel ratio I should be entering for iPhone 6?
I've been looking for the same thing, until the new update comes out with the models added I've been going by this link http://www.paintcodeapp.com/news/iphone-6-screens-demystified here.
Although fair warning it's not perfect, I've got an iphone 6 in front of me and although it's close, it's not exact.
Can it?
I've tried and it run OK on PC but none of my mobile device success (ipad, nexus 7, samsung galaxy S3, Kindle fire HD...)
Browser support for the Full screen API is actually very poor according to http://caniuse.com/#search=fullscreen
If you really need to use the whole screen for your application, you should find an alternative for mobile users.
This Javascript hack may help you: http://mobile.tutsplus.com/tutorials/mobile-web-apps/remove-address-bar/
I am using the following test setup (Latest meaning as of July 14th 2012):
Core i7 with an ATI FirePro V9800 (Eyefinity)
Windows 7 Pro 64 Bit (latest updates / patches)
Latest Catalyst drivers
Latest Google Chrome Stable / Canary.
6 x 1080p displays (in a row) resulting in a 11520px by 1080px desktop.
I have tried the following to get a fullscreen web view across displays:
Set the maximize to whole desktop setting in the Catalyst control panel. That works for maximizing normal windows (except Chrome), but not for anything fullscreen.
Tried Chrome Kiosk mode (that would be ideal), same problem, only fills up primary display.
Using Chrome Fullscreen or HTML5 fullscreen API results in the same: Fullscreen on a single of the 6 monitors.
IE9 seems to have a limitation of about 10000px for the webview, thus i cannot even stretch it across the entire desktop manually (that works with Chrome).
Tried UltraMon.
Tried a number of Chrome command line switches (http://peter.sh/experiments/chromium-command-line-switches/) for kiosk mode, start in fullscreen etc., so right now using the --app="http://127.0.0.1/index.html" switch to at least get rid of most of Chrome's UI elements.
Tried to find an extension for Chrome, but no success.
Tried Chrome Frame in IE9, also only uses one display.
I understand it is most probably a driver issue reporting the wrong desktop size to Chrome (which I thought was the point of the Catalyst Maximize to full desktop size function). Chrome does not seem to get the desktop size from the same place as other "normal" windows do (obviously not very familiar with Windows windowing).
I would like to work on a full-screen Chrome webview across multiple monitors or a completely chromeless window that I can manually maximize. My browser configuration is flexible, even the OS is somewhat flexible.
I would like to know:
Has anyone gotten a fullscreen browser view across more than 1 monitor to work with Chrome (or any browser)?
Are there any tools that can fake the right (full) display size to Chrome?
Could this be workable in Windows 8?
Is there something that just displays a Chromeless Chrome browser that runs the very latest Chrome? (I have seen awesomium, but find that its price is too high for what I want it to do). Also I want to be able to use the most recent Chrome releases ideally.
Any comments welcome and sorry for the lengthy details.
Thanks for reading!
-Tobi
This worked for me using two monitors:
start C:\Users\terminal\AppData\Local\Google\Chrome\Application\chrome.exe --app="http://www.domain1.com" --window-position=0,0 --kiosk --user-data-dir=c:/monitor1
start C:\Users\terminal\AppData\Local\Google\Chrome\Application\chrome.exe --app="http://www.domain2.com" --window-position=1680,0 --kiosk --user-data-dir=c:/monitor2
I think the order of the parameters is relevant.