Window Dimensions

Window Dimensions

This extension will display the window's dimensions after resizing the browser window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "js/jquery-1.11.1.min.js",
      "js/scripts.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "css/styles.css"
      ],
      "js": [
        "js/jquery-1.11.1.min.js",
        "js/scripts.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "http://localhost/*",
        "https://localhost/*",
        "http://127.0.0.1/*",
        "file:///*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "This extension will display the window's dimensions after resizing the browser window.",
  "icons": {
    "128": "img/icon128.png"
  },
  "manifest_version": 2,
  "name": "Window Dimensions",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "permissions": [
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.7"
}