Product Hunt Bookmark Collections

Product Hunt Bookmark Collections

Bookmark and save your favorite collections

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Product Hunt Bookmark Collections",
  "description": "Bookmark and save your favorite collections",
  "version": "0.0.5",
  "manifest_version": 2,
  "icons": {
    "19": "icons/icon-19.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.producthunt.com/*/collections/*",
        "*://www.producthunt.com/e/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/inject.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/icon-19.png",
      "38": "icons/icon-38.png"
    },
    "default_popup": "popup.html"
  }
}