HeaderHunter

Notifications for recruitment messages in HTTP headers

ما هو HeaderHunter؟

HeaderHunter هو إضافة Chrome تم تطويرها بواسطة runeskjoldborgmadsen، والميزة الرئيسية لها هي "Notifications for recruitment messages in HTTP headers".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة HeaderHunter

قم بتنزيل ملفات الامتداد HeaderHunter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}