HN Who's Hiring Job Finder

HN Who's Hiring Job Finder

This extension allows you to search for multiple keywords on job listings in Hacker News' Who's Hiring thread.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HN Who's Hiring Job Finder",
  "description": "This extension allows you to search for multiple keywords on job listings in Hacker News' Who's Hiring thread.",
  "omnibox": {
    "keyword": "hn"
  },
  "icons": {
    "16": "icon16x16.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "version": "1.3",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://news.ycombinator.com/*"
      ],
      "js": [
        "scripts.js"
      ]
    }
  ]
}