Product Hunt Rank

Product Hunt Rank

Chrome extension that shows how many times a website was upvoted on Product Hunt

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 Rank",
  "description": "Chrome extension that shows how many times a website was upvoted on Product Hunt",
  "version": "1.1",
  "author": "Jitbit & Artiom Dashinsky",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icon.png",
    "48": "[email protected]"
  },
  "permissions": [
    "tabs",
    "https://api.producthunt.com/"
  ],
  "background": {
    "scripts": [
      "jquery.min.js",
      "background.js"
    ]
  }
}