Product Hunt™ Tabs

Product Hunt™ Tabs

Chrome extension to open all daily products websites with a single click on Product Hunt™.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extName__",
  "version": "0.4.5",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "manifest_version": 2,
  "icons": {
    "128": "assets/icon-128.png"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://www.producthunt.com/*",
        "https://www.producthunt.com/*"
      ],
      "js": [
        "js/main.min.js"
      ],
      "css": [
        "css/style.min.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  }
}