HeaderHunter

Notifications for recruitment messages in HTTP headers

HeaderHunterとは何ですか?

HeaderHunterはruneskjoldborgmadsenによって開発されたChromeの拡張機能で、その主な機能は「Notifications for recruitment messages in HTTP headers」です。

拡張機能のスクリーンショット

screenshot

HeaderHunter拡張機能のCRXファイルをダウンロード

HeaderHunter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}