HeaderHunter

Notifications for recruitment messages in HTTP headers

Qu'est-ce que HeaderHunter ?

HeaderHunter est une extension Chrome développée par runeskjoldborgmadsen, et sa fonction principale est "Notifications for recruitment messages in HTTP headers".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension HeaderHunter

Téléchargez les fichiers d'extension HeaderHunter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom HeaderHunter HeaderHunter
ID almeoedichpmgpjhobhenfacacpohbma
URL Officiel https://chromewebstore.google.com/detail/headerhunter/almeoedichpmgpjhobhenfacacpohbma
Description Notifications for recruitment messages in HTTP headers
Taille du Fichier 9.2 KB
Nombre d'Installations 22
Version Actuelle 1.0
Dernière Mise à Jour 2014-03-21
Date de Publication 2014-03-21
Évaluation 5.00/5 Total 1 Évaluations
Développeur runeskjoldborgmadsen
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}