HeaderHunter

Notifications for recruitment messages in HTTP headers

Co je HeaderHunter?

HeaderHunter je rozšíření Chrome vyvinuté runeskjoldborgmadsen, a jeho hlavní funkcí je „Notifications for recruitment messages in HTTP headers“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření HeaderHunter

Stáhněte si soubory rozšíření HeaderHunter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název HeaderHunter HeaderHunter
ID almeoedichpmgpjhobhenfacacpohbma
Oficiální URL https://chromewebstore.google.com/detail/headerhunter/almeoedichpmgpjhobhenfacacpohbma
Popis Notifications for recruitment messages in HTTP headers
Velikost souboru 9.2 KB
Počet instalací 22
Aktuální Verze 1.0
Poslední Aktualizace 2014-03-21
Datum Vydání 2014-03-21
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář runeskjoldborgmadsen
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}