Dribbble shot hover preview

Dribbble shot hover preview

Show large shot preview on hover. Supports images, gifs and videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Dribbble shot hover preview",
  "version": "1.2.0",
  "description": "Show large shot preview on hover. Supports images, gifs and videos.",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/webIcon.svg",
        "content/index.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "assets/index.js"
      ],
      "css": [
        "content/index.css"
      ],
      "matches": [
        "*://dribbble.com/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ]
}