Chromebook Simulator

Chromebook Simulator

This extension one-click resizes your window to the typical size of a fullscreen Chromebook. It is very simple.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chromebook Simulator",
  "description": "This extension one-click resizes your window to the typical size of a fullscreen Chromebook. It is very simple.",
  "version": "1.0",
  "author": "Andrew Sutherland",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "icon16.png",
      "24": "icon24.png",
      "32": "icon32.png"
    }
  },
  "permissions": [
    "activeTab"
  ]
}