HeaderHunter

Notifications for recruitment messages in HTTP headers

HeaderHunter란 무엇입니까?

HeaderHunter은(는) runeskjoldborgmadsen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Notifications for recruitment messages in HTTP headers"입니다.

확장 프로그램 스크린샷

screenshot

HeaderHunter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        HeaderHunter is a simple Google Chrome extension that will show a small alert whenever you visit a website that returns recruitment messages in the HTTP headers.

A few companies started adding recruitment messages via "X-Recruiting", "X-Hacker", "X-Hire" or "X-Jobs" HTTP headers. Without any centralized job site, this extension turns your browser into a job listing app, by reading these headers when they are present. All web admins have to do is to include one of these headers with a custom message to the user.

You can contribute to the development of this extension on GitHub:
https://github.com/runemadsen/headerhunter                    

확장 프로그램 기본 정보

이름 HeaderHunter HeaderHunter
ID almeoedichpmgpjhobhenfacacpohbma
공식 URL https://chromewebstore.google.com/detail/headerhunter/almeoedichpmgpjhobhenfacacpohbma
설명 Notifications for recruitment messages in HTTP headers
파일 크기 9.2 KB
설치 횟수 22
현재 버전 1.0
최근 업데이트 2014-03-21
출시 날짜 2014-03-21
평점 5.00/5 총 1 개의 평점
개발자 runeskjoldborgmadsen
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HeaderHunter",
    "description": "Notifications for recruitment messages in HTTP headers",
    "manifest_version": 2,
    "version": "1.0",
    "permissions": [
        "webRequest",
        "tabs",
        "storage",
        "*:\/\/*\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "inject.css"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}