EDHREC Image Hover Preview

EDHREC Image Hover Preview

This extension will show a bigger version of images on EDHREC when they are hovered over.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "EDHREC Image Hover Preview",
  "description": "This extension will show a bigger version of images on EDHREC when they are hovered over.",
  "version": "1.2resigned1",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "activeTab",
    "*://*.edhrec.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.edhrec.com/*"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{35df781f-81ee-401a-aea5-665c6a91ac7e}"
    }
  }
}