Product Hunt

Product Hunt

Product Hunt brings you the best new technology products, every day. Weave discovery into your daily workflow with each new tab…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Product Hunt",
  "short_name": "Product Hunt",
  "version": "3.0",
  "permissions": [
    "topSites"
  ],
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "icons": {
    "16": "icons/icon-16.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "script.js"
      ],
      "matches": [
        "http://ph.test:5001/*",
        "https://ext-test.producthunt.com/*",
        "https://extension.producthunt.com/*"
      ],
      "all_frames": true
    }
  ]
}