Hacker News Rank

Hacker News Rank

Chrome extension that shows how many times a page was upvoted on Hacker News

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hacker News Rank",
  "version": "2.6",
  "author": "Jitbit",
  "action": {
    "default_icon": {
      "16": "Icon.png",
      "48": "[email protected]",
      "128": "Icon128.png"
    }
  },
  "icons": {
    "16": "Icon.png",
    "48": "[email protected]",
    "128": "Icon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://hn.algolia.com/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "description": "Chrome extension that shows how many times a page was upvoted on Hacker News"
}