CTRL+Enter Image Zoom

CTRL+Enter Image Zoom

Zoom image with CTRL+Enter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CTRL+Enter Image Zoom",
  "version": "0.3.0",
  "author": "Husseyexplores",
  "manifest_version": 2,
  "description": "Zoom image with CTRL+Enter",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}