Product Hunt Hover Cards

Product Hunt Hover Cards

Hover cards for Product Hunt user profiles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Product Hunt Hover Cards",
  "description": "Hover cards for Product Hunt user profiles",
  "version": "1.0.0",
  "icons": {
    "16": "images/icon128.png",
    "48": "images/icon128.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "*://*.producthunt.com/*"
      ],
      "all_frames": true,
      "js": [
        "js/content_script.js"
      ],
      "css": [
        "css/styles.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "*://*.producthunt.com/*"
  ]
}