Google Images by Exact Size

Google Images by Exact Size

Search images on Google by exact custom width and height from any web page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Google Search Images by Exact Size",
  "description": "Search images on Google by exact width and height from any web page",
  "version": "1.0",
  "manifest_version": 2,
  "permissions": [
    "contextMenus"
  ],
  "icons": {
    "16": "/images/icon-bitty.png",
    "48": "/images/icon-small.png",
    "128": "/images/icon-large.png"
  },
  "browser_action": {
    "default_popup": "/html/popup.html",
    "default_icon": "/images/icon-bitty.png"
  },
  "author": "Mohammed Tanveer",
  "background": {
    "persistent": false,
    "scripts": [
      "/js/background.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+I",
        "mac": "MacCtrl+I"
      },
      "description": "Opens popup.html"
    }
  }
}