Skip to content

Instantly share code, notes, and snippets.

@TrevorJTClarke
Created August 18, 2015 17:34
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TrevorJTClarke/afe5fa05023f21fb05d0 to your computer and use it in GitHub Desktop.
Save TrevorJTClarke/afe5fa05023f21fb05d0 to your computer and use it in GitHub Desktop.
Chrome Emulator Device List and Properties
var emulatorDeviceList = [
{ name: 'Amazon Kindle Fire HDX', width: 2560, height: 1600, ratio: 2 },
{ name: 'Apple iPad', width: 1024, height: 768, ratio: 2 },
{ name: 'Apple iPad Mini', width: 1024, height: 768, ratio: 1 },
{ name: 'Apple iPhone 4', width: 320, height: 480, ratio: 2 },
{ name: 'Apple iPhone 5', width: 320, height: 568, ratio: 2 },
{ name: 'Apple iPhone 6', width: 375, height: 667, ratio: 2 },
{ name: 'Apple iPhone 6 Plus', width: 414, height: 736, ratio: 3 },
{ name: 'BlackBerry PlayBook', width: 1024, height: 600, ratio: 1 },
{ name: 'BlackBerry Z30', width: 360, height: 640, ratio: 2 },
{ name: 'Google Nexus 10', width: 1280, height: 800, ratio: 2 },
{ name: 'Google Nexus 4', width: 384, height: 640, ratio: 2 },
{ name: 'Google Nexus 5', width: 360, height: 640, ratio: 3 },
{ name: 'Google Nexus 6', width: 412, height: 732, ratio: 3.5 },
{ name: 'Google Nexus 7', width: 960, height: 600, ratio: 2 },
{ name: 'LG Optimus L70', width: 384, height: 640, ratio: 1.2 },
{ name: 'Laptop with HiDPI screen', width: 1440, height: 900, ratio: 2 },
{ name: 'Laptop with MDPI screen', width: 1280, height: 800, ratio: 1 },
{ name: 'Laptop with touch', width: 1280, height: 950, ratio: 1 },
{ name: 'Nokia Lumia 520', width: 320, height: 533, ratio: 1.4 },
{ name: 'Nokia N9', width: 360, height: 640, ratio: 1 },
{ name: 'Samsung Galaxy Note 3', width: 360, height: 640, ratio: 3 },
{ name: 'Samsung Galaxy Note II', width: 360, height: 640, ratio: 2 },
{ name: 'Samsung Galaxy S III', width: 360, height: 640, ratio: 2 },
{ name: 'Samsung Galaxy S4', width: 360, height: 640, ratio: 3 }
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment