Fill Screen

Fill Screen

Resizes the current window to fill the screen without maximizing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fill Screen",
  "version": "0.2",
  "description": "Resizes the current window to fill the screen without maximizing.",
  "icons": {
    "16": "Icons/Icon16.png",
    "32": "Icons/Icon32.png",
    "128": "Icons/Icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "Icons/Action-Restore-19.png",
      "38": "Icons/Action-Restore-38.png"
    },
    "default_title": "Fill Screen"
  },
  "author": "Dai Rees",
  "permissions": [
    "activeTab",
    "https://www.google.com/_/chrome/newtab*"
  ],
  "background": {
    "scripts": [
      "Background.js"
    ],
    "persistent": false
  }
}