Ideal Size

Ideal Size

Resize the window to the most ideal size for the page you are on

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "version": "1.4.0",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "32": "images/addon.svg"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "optional_permissions": [
    "tabs",
    "https://docs.google.com/document*",
    "https://developer.mozilla.org/*",
    "https://bugzilla.mozilla.org/*",
    "https://github.com/*",
    "https://www.di.fm/*"
  ],
  "page_action": {
    "default_icon": "images/addon.svg",
    "default_title": "Ideal Size",
    "browser_style": false,
    "show_matches": [
      "https://docs.google.com/document*",
      "https://developer.mozilla.org/*",
      "https://bugzilla.mozilla.org/*",
      "https://github.com/*",
      "https://www.di.fm/*",
      "https://*.greenhouse.io/*"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "background/background.js"
    ]
  }
}